From 5304dcdd9c2db545e0d633c3668b71ed5eacfdfd Mon Sep 17 00:00:00 2001 From: Siddharth Vaghasia <siddh.vaghasia@gmail.com> Date: Wed, 17 Jan 2024 11:43:53 +0530 Subject: [PATCH 01/53] fix for all power platform commands giving error (#3687) * fix for all power platform commands giving error fix for all power platform commands giving error due to ARM is no longer supported. Co-Authored-By: Kunj Balkrishna Sangani <Sangani.kunj@gmail.com> * fix for build error Co-Authored-By: Kunj Balkrishna Sangani <Sangani.kunj@gmail.com> --------- Co-authored-by: Kunj Balkrishna Sangani <Sangani.kunj@gmail.com> Co-authored-by: Gautam Sheth <gautamdsheth@outlook.com> --- src/Commands/PnP.PowerShell.csproj | 2 +- .../PowerPlatform/Environment/GetPowerPlatformConnector.cs | 3 ++- .../Environment/GetPowerPlatformEnvironment.cs | 3 ++- src/Commands/PowerPlatform/PowerApps/GetPowerApp.cs | 3 ++- src/Commands/PowerPlatform/PowerAutomate/AddFlowOwner.cs | 2 +- src/Commands/PowerPlatform/PowerAutomate/DisableFlow.cs | 2 +- src/Commands/PowerPlatform/PowerAutomate/EnableFlow.cs | 2 +- src/Commands/PowerPlatform/PowerAutomate/ExportFlow.cs | 2 +- src/Commands/PowerPlatform/PowerAutomate/GetFlowOwner.cs | 2 +- src/Commands/PowerPlatform/PowerAutomate/GetFlowRun.cs | 5 +++-- src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs | 7 ++++--- .../PowerPlatform/PowerAutomate/RemoveFlowOwner.cs | 2 +- src/Commands/PowerPlatform/PowerAutomate/RestartFlowRun.cs | 5 +++-- src/Commands/PowerPlatform/PowerAutomate/StopFlowRun.cs | 2 +- src/Tests/PnP.PowerShell.Tests.csproj | 2 +- 15 files changed, 25 insertions(+), 19 deletions(-) diff --git a/src/Commands/PnP.PowerShell.csproj b/src/Commands/PnP.PowerShell.csproj index 2ccc12072..6d7bd9604 100644 --- a/src/Commands/PnP.PowerShell.csproj +++ b/src/Commands/PnP.PowerShell.csproj @@ -58,7 +58,7 @@ <PackageReference Include="Microsoft.Graph" Version="3.33.0" /> <PackageReference Include="Microsoft.Identity.Client" Version="4.50.0" /> <PackageReference Include="Microsoft.SharePointOnline.CSOM" Version="16.1.*" /> - <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.27.0" /> + <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.34.0" /> <PackageReference Include="PnP.Framework" Version="1.14.*-*" Condition="'$(PnPFrameworkPath)' == '' and '$(IsRelease)' != '1'" /> <PackageReference Include="PnP.Framework" Version="1.14.*-*" Condition="'$(IsRelease)' == '1'" /> diff --git a/src/Commands/PowerPlatform/Environment/GetPowerPlatformConnector.cs b/src/Commands/PowerPlatform/Environment/GetPowerPlatformConnector.cs index 870b9ae25..bdd85ca35 100644 --- a/src/Commands/PowerPlatform/Environment/GetPowerPlatformConnector.cs +++ b/src/Commands/PowerPlatform/Environment/GetPowerPlatformConnector.cs @@ -23,6 +23,7 @@ public class GetPowerPlatformConnector : PnPAzureManagementApiCmdlet protected override void ExecuteCmdlet() { string environmentName = null; + string baseUrl = "https://api.flow.microsoft.com/"; if (ParameterSpecified(nameof(Environment))) { environmentName = Environment.GetName(); @@ -30,7 +31,7 @@ protected override void ExecuteCmdlet() } else { - var environments = GraphHelper.GetResultCollectionAsync<Model.PowerPlatform.Environment.Environment>(Connection, "https://management.azure.com/providers/Microsoft.ProcessSimple/environments?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + var environments = GraphHelper.GetResultCollectionAsync<Model.PowerPlatform.Environment.Environment>(Connection, baseUrl + "/providers/Microsoft.ProcessSimple/environments?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); environmentName = environments.FirstOrDefault(e => e.Properties.IsDefault.HasValue && e.Properties.IsDefault == true)?.Name; if (string.IsNullOrEmpty(environmentName)) diff --git a/src/Commands/PowerPlatform/Environment/GetPowerPlatformEnvironment.cs b/src/Commands/PowerPlatform/Environment/GetPowerPlatformEnvironment.cs index 3d42e54f4..277872b23 100644 --- a/src/Commands/PowerPlatform/Environment/GetPowerPlatformEnvironment.cs +++ b/src/Commands/PowerPlatform/Environment/GetPowerPlatformEnvironment.cs @@ -21,7 +21,8 @@ public class GetPowerPlatformEnvironment : PnPAzureManagementApiCmdlet protected override void ExecuteCmdlet() { - var environments = GraphHelper.GetResultCollectionAsync<Model.PowerPlatform.Environment.Environment>(Connection, "https://management.azure.com/providers/Microsoft.ProcessSimple/environments?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + string baseUrl = "https://api.flow.microsoft.com/"; + var environments = GraphHelper.GetResultCollectionAsync<Model.PowerPlatform.Environment.Environment>(Connection, baseUrl + "/providers/Microsoft.ProcessSimple/environments?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); if(ParameterSpecified(nameof(IsDefault)) && IsDefault.ToBool()) { diff --git a/src/Commands/PowerPlatform/PowerApps/GetPowerApp.cs b/src/Commands/PowerPlatform/PowerApps/GetPowerApp.cs index 68c569df6..59162d830 100644 --- a/src/Commands/PowerPlatform/PowerApps/GetPowerApp.cs +++ b/src/Commands/PowerPlatform/PowerApps/GetPowerApp.cs @@ -31,7 +31,8 @@ protected override void ExecuteCmdlet() } else { - var environments = GraphHelper.GetResultCollectionAsync<Model.PowerPlatform.Environment.Environment>(Connection, "https://management.azure.com/providers/Microsoft.ProcessSimple/environments?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + string baseUrl = "https://api.flow.microsoft.com/"; + var environments = GraphHelper.GetResultCollectionAsync<Model.PowerPlatform.Environment.Environment>(Connection, baseUrl + "/providers/Microsoft.ProcessSimple/environments?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); environmentName = environments.FirstOrDefault(e => e.Properties.IsDefault.HasValue && e.Properties.IsDefault == true)?.Name; if(string.IsNullOrEmpty(environmentName)) diff --git a/src/Commands/PowerPlatform/PowerAutomate/AddFlowOwner.cs b/src/Commands/PowerPlatform/PowerAutomate/AddFlowOwner.cs index 12f7a62eb..8577a5676 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/AddFlowOwner.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/AddFlowOwner.cs @@ -81,7 +81,7 @@ protected override void ExecuteCmdlet() }; WriteVerbose($"Assigning user {Role} permissions to flow {flowName} in environment {environmentName}"); - RestHelper.PostAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}/modifyPermissions?api-version=2016-11-01", AccessToken, payload).GetAwaiter().GetResult(); + RestHelper.PostAsync(Connection.HttpClient, $"https://api.flow.microsoft.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}/modifyPermissions?api-version=2016-11-01", AccessToken, payload).GetAwaiter().GetResult(); } } } diff --git a/src/Commands/PowerPlatform/PowerAutomate/DisableFlow.cs b/src/Commands/PowerPlatform/PowerAutomate/DisableFlow.cs index 24c5d28cb..50d060d05 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/DisableFlow.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/DisableFlow.cs @@ -21,7 +21,7 @@ protected override void ExecuteCmdlet() { var environmentName = Environment.GetName(); var flowName = Identity.GetName(); - RestHelper.PostAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}/stop?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + RestHelper.PostAsync(Connection.HttpClient, $"https://api.flow.microsoft.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}/stop?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); } } } \ No newline at end of file diff --git a/src/Commands/PowerPlatform/PowerAutomate/EnableFlow.cs b/src/Commands/PowerPlatform/PowerAutomate/EnableFlow.cs index 19247c99e..0adbcecd1 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/EnableFlow.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/EnableFlow.cs @@ -21,7 +21,7 @@ protected override void ExecuteCmdlet() { var environmentName = Environment.GetName(); var flowName = Identity.GetName(); - RestHelper.PostAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}/start?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + RestHelper.PostAsync(Connection.HttpClient, $"https://api.flow.microsoft.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}/start?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); } } } \ No newline at end of file diff --git a/src/Commands/PowerPlatform/PowerAutomate/ExportFlow.cs b/src/Commands/PowerPlatform/PowerAutomate/ExportFlow.cs index 1672d3e81..c64ad3aac 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/ExportFlow.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/ExportFlow.cs @@ -161,7 +161,7 @@ protected override void ExecuteCmdlet() } else { - var json = RestHelper.PostAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/exportToARMTemplate?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + var json = RestHelper.PostAsync(Connection.HttpClient, $"https://api.flow.microsoft.com/providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/exportToARMTemplate?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); WriteObject(json); } } diff --git a/src/Commands/PowerPlatform/PowerAutomate/GetFlowOwner.cs b/src/Commands/PowerPlatform/PowerAutomate/GetFlowOwner.cs index 82f76842d..d8df71757 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/GetFlowOwner.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/GetFlowOwner.cs @@ -32,7 +32,7 @@ protected override void ExecuteCmdlet() throw new PSArgumentException("Flow not found.", nameof(Identity)); } - var flowOwners = GraphHelper.GetResultCollectionAsync<FlowPermission>(Connection, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}/permissions?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + var flowOwners = GraphHelper.GetResultCollectionAsync<FlowPermission>(Connection, $"https://api.flow.microsoft.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}/permissions?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); WriteObject(flowOwners, true); } } diff --git a/src/Commands/PowerPlatform/PowerAutomate/GetFlowRun.cs b/src/Commands/PowerPlatform/PowerAutomate/GetFlowRun.cs index 5f103bcf6..5f9a0c403 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/GetFlowRun.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/GetFlowRun.cs @@ -20,6 +20,7 @@ public class GetFlowRun : PnPAzureManagementApiCmdlet protected override void ExecuteCmdlet() { + string baseUrl = "https://api.flow.microsoft.com/"; var environmentName = Environment.GetName(); if (string.IsNullOrEmpty(environmentName)) { @@ -35,12 +36,12 @@ protected override void ExecuteCmdlet() if (ParameterSpecified(nameof(Identity))) { var flowRunName = Identity.GetName(); - var flowRun = GraphHelper.GetAsync<FlowRun>(Connection, $"https://management.azure.com/providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/runs/{flowRunName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + var flowRun = GraphHelper.GetAsync<FlowRun>(Connection, baseUrl + $"providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/runs/{flowRunName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); WriteObject(flowRun, false); } else { - var flowRuns = GraphHelper.GetResultCollectionAsync<FlowRun>(Connection, $"https://management.azure.com/providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/runs?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + var flowRuns = GraphHelper.GetResultCollectionAsync<FlowRun>(Connection, baseUrl + $"providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/runs?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); WriteObject(flowRuns, true); } } diff --git a/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs b/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs index 2165089a2..5b50704ef 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/RemoveFlow.cs @@ -26,6 +26,7 @@ public class RemoveFlow : PnPAzureManagementApiCmdlet protected override void ExecuteCmdlet() { + string baseUrl = "https://api.flow.microsoft.com/"; var environmentName = Environment.GetName(); var flowName = Identity.GetName(); @@ -38,10 +39,10 @@ protected override void ExecuteCmdlet() { // 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<Model.PowerPlatform.PowerAutomate.Flow>(Connection, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + var result = GraphHelper.GetAsync<Model.PowerPlatform.PowerAutomate.Flow>(Connection, baseUrl + $"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(); + RestHelper.DeleteAsync(Connection.HttpClient, baseUrl + $"providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); WriteVerbose($"Flow with name {flowName} deleted"); } } @@ -52,7 +53,7 @@ protected override void ExecuteCmdlet() } else { - 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(); + RestHelper.DeleteAsync(Connection.HttpClient, baseUrl + $"providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); WriteVerbose($"Flow with name {flowName} deleted"); } } diff --git a/src/Commands/PowerPlatform/PowerAutomate/RemoveFlowOwner.cs b/src/Commands/PowerPlatform/PowerAutomate/RemoveFlowOwner.cs index 751526b0d..0fbde3b3c 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/RemoveFlowOwner.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/RemoveFlowOwner.cs @@ -75,7 +75,7 @@ protected override void ExecuteCmdlet() if(Force || ShouldContinue($"Remove flow owner with id '{user.Id.Value}' from flow '{flowName}'?", "Remove flow owner")) { WriteVerbose($"Removing user {user.Id.Value} permissions from flow {flowName} in environment {environmentName}"); - RestHelper.PostAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}/modifyPermissions?api-version=2016-11-01", AccessToken, payload).GetAwaiter().GetResult(); + RestHelper.PostAsync(Connection.HttpClient, $"https://api.flow.microsoft.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows/{flowName}/modifyPermissions?api-version=2016-11-01", AccessToken, payload).GetAwaiter().GetResult(); } } } diff --git a/src/Commands/PowerPlatform/PowerAutomate/RestartFlowRun.cs b/src/Commands/PowerPlatform/PowerAutomate/RestartFlowRun.cs index 990820517..c1ffe0a7e 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/RestartFlowRun.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/RestartFlowRun.cs @@ -25,6 +25,7 @@ public class RestartFlowRun : PnPAzureManagementApiCmdlet protected override void ExecuteCmdlet() { + string baseUrl = "https://api.flow.microsoft.com/"; var environmentName = Environment.GetName(); if (string.IsNullOrEmpty(environmentName)) { @@ -46,8 +47,8 @@ protected override void ExecuteCmdlet() if (!Force && !ShouldContinue($"Restart flow run with name '{flowRunName}'?", Resources.Confirm)) return; - var triggers = GraphHelper.GetResultCollectionAsync<FlowRunTrigger>(Connection, $"https://management.azure.com/providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/triggers?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); - RestHelper.PostAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/triggers/{triggers.First().Name}/histories/{flowRunName}/resubmit?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + var triggers = GraphHelper.GetResultCollectionAsync<FlowRunTrigger>(Connection, baseUrl + $"providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/triggers?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + RestHelper.PostAsync(Connection.HttpClient, baseUrl + $"providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/triggers/{triggers.First().Name}/histories/{flowRunName}/resubmit?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); } } } diff --git a/src/Commands/PowerPlatform/PowerAutomate/StopFlowRun.cs b/src/Commands/PowerPlatform/PowerAutomate/StopFlowRun.cs index 61019b1b1..c56a566d4 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/StopFlowRun.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/StopFlowRun.cs @@ -43,7 +43,7 @@ protected override void ExecuteCmdlet() if (Force || ShouldContinue($"Stop flow run with name '{flowRunName}'?", Resources.Confirm)) { - RestHelper.PostAsync(Connection.HttpClient, $"https://management.azure.com/providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/runs/{flowRunName}/cancel?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + RestHelper.PostAsync(Connection.HttpClient, $"https://api.flow.microsoft.com/providers/Microsoft.ProcessSimple/environments/{environmentName}/flows/{flowName}/runs/{flowRunName}/cancel?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); } } } diff --git a/src/Tests/PnP.PowerShell.Tests.csproj b/src/Tests/PnP.PowerShell.Tests.csproj index 6b4ba1813..bb0b1baf5 100644 --- a/src/Tests/PnP.PowerShell.Tests.csproj +++ b/src/Tests/PnP.PowerShell.Tests.csproj @@ -24,7 +24,7 @@ <PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> <PackageReference Include="PnP.Framework" Version="1.14.*-*" Condition="'$(LocalDebug)' != 'true'" /> <PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.1" /> - <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.27.0" /> + <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.34.0" /> <PackageReference Include="System.Reflection.Emit" Version="4.7.0" /> <PackageReference Include="System.Runtime.Loader" Version="4.3.0" /> <PackageReference Include="System.Security.Cryptography.ProtectedData" Version="6.0.0" /> From 66270e84485e3864bbe040e71ed70c0a959b4567 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Wed, 17 Jan 2024 08:15:09 +0200 Subject: [PATCH 02/53] Update PnP.PowerShell.csproj --- src/Commands/PnP.PowerShell.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Commands/PnP.PowerShell.csproj b/src/Commands/PnP.PowerShell.csproj index 6d7bd9604..9aa214b3f 100644 --- a/src/Commands/PnP.PowerShell.csproj +++ b/src/Commands/PnP.PowerShell.csproj @@ -14,7 +14,7 @@ <CopyRefAssembliesToPublishDirectory>true</CopyRefAssembliesToPublishDirectory> <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> <Authors>PnP.PowerShell</Authors> - <Copyright>PnP 2023</Copyright> + <Copyright>PnP 2024</Copyright> <Configurations>Debug;Release</Configurations> <PnPFrameworkPath Condition="'$(PnPFrameworkPath)' == ''"></PnPFrameworkPath> <PnPCoreSdkPath Condition="'$(PnPCoreSdkPath)' == ''"></PnPCoreSdkPath> @@ -58,7 +58,7 @@ <PackageReference Include="Microsoft.Graph" Version="3.33.0" /> <PackageReference Include="Microsoft.Identity.Client" Version="4.50.0" /> <PackageReference Include="Microsoft.SharePointOnline.CSOM" Version="16.1.*" /> - <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.34.0" /> + <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.27.0" /> <PackageReference Include="PnP.Framework" Version="1.14.*-*" Condition="'$(PnPFrameworkPath)' == '' and '$(IsRelease)' != '1'" /> <PackageReference Include="PnP.Framework" Version="1.14.*-*" Condition="'$(IsRelease)' == '1'" /> From db88094857d118b0c2c469cf55075105e54db5c3 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Wed, 17 Jan 2024 08:15:33 +0200 Subject: [PATCH 03/53] Update PnP.PowerShell.Tests.csproj --- src/Tests/PnP.PowerShell.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tests/PnP.PowerShell.Tests.csproj b/src/Tests/PnP.PowerShell.Tests.csproj index bb0b1baf5..6b4ba1813 100644 --- a/src/Tests/PnP.PowerShell.Tests.csproj +++ b/src/Tests/PnP.PowerShell.Tests.csproj @@ -24,7 +24,7 @@ <PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> <PackageReference Include="PnP.Framework" Version="1.14.*-*" Condition="'$(LocalDebug)' != 'true'" /> <PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.1" /> - <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.34.0" /> + <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.27.0" /> <PackageReference Include="System.Reflection.Emit" Version="4.7.0" /> <PackageReference Include="System.Runtime.Loader" Version="4.3.0" /> <PackageReference Include="System.Security.Cryptography.ProtectedData" Version="6.0.0" /> From 79548263e5c0dbb55210af1cc1b4ecd3481ec304 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 11:50:03 +0200 Subject: [PATCH 04/53] Update PnP.PowerShell.csproj --- src/Commands/PnP.PowerShell.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/PnP.PowerShell.csproj b/src/Commands/PnP.PowerShell.csproj index 9aa214b3f..9f2d44d37 100644 --- a/src/Commands/PnP.PowerShell.csproj +++ b/src/Commands/PnP.PowerShell.csproj @@ -58,7 +58,7 @@ <PackageReference Include="Microsoft.Graph" Version="3.33.0" /> <PackageReference Include="Microsoft.Identity.Client" Version="4.50.0" /> <PackageReference Include="Microsoft.SharePointOnline.CSOM" Version="16.1.*" /> - <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.27.0" /> + <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.35.0" /> <PackageReference Include="PnP.Framework" Version="1.14.*-*" Condition="'$(PnPFrameworkPath)' == '' and '$(IsRelease)' != '1'" /> <PackageReference Include="PnP.Framework" Version="1.14.*-*" Condition="'$(IsRelease)' == '1'" /> From 24bf26f80192df56e7fe2ebf23ab8279809863ea Mon Sep 17 00:00:00 2001 From: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Date: Fri, 19 Jan 2024 09:55:51 +0000 Subject: [PATCH 05/53] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9678 ++++++++--------- version.txt | 2 +- 3 files changed, 4841 insertions(+), 4841 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 75bd83ed9..9ed1d8eee 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -9ea201efac437ce24f6a626a3be7b87ac101839d \ No newline at end of file +ab0653e7afde0c98b396e659bfdbf1362b93b8cc \ 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 26e7bd412..82ffe335a 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9680 +1,9680 @@ [ { - "Id": 1, "Rank": 1, - "CommandName": "Add-PnPAlert", - "Command": "Add-PnPAlert -List \"Demo List\"" + "Command": "Add-PnPAlert -List \"Demo List\"", + "Id": 1, + "CommandName": "Add-PnPAlert" }, { - "Id": 2, "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 \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", + "Id": 2, + "CommandName": "Add-PnPAlert" }, { - "Id": 3, "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\"", + "Id": 3, + "CommandName": "Add-PnPAlert" }, { - "Id": 4, "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-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" }, { - "Id": 5, "Rank": 1, - "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg" + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Id": 5, + "CommandName": "Add-PnPApp" }, { - "Id": 6, "Rank": 2, - "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Id": 6, + "CommandName": "Add-PnPApp" }, { - "Id": 7, "Rank": 3, - "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Id": 7, + "CommandName": "Add-PnPApp" }, { - "Id": 8, "Rank": 4, - "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Id": 8, + "CommandName": "Add-PnPApp" }, { - "Id": 9, "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-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", + "Id": 9, + "CommandName": "Add-PnPApplicationCustomizer" }, { - "Id": 10, "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification", - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Id": 10, + "CommandName": "Add-PnPAvailableSiteClassification" }, { - "Id": 11, "Rank": 2, - "CommandName": "Add-PnPAvailableSiteClassification", - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Id": 11, + "CommandName": "Add-PnPAvailableSiteClassification" }, { - "Id": 12, "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\"", + "Id": 12, + "CommandName": "Add-PnPAzureADGroupMember" }, { - "Id": 13, "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 \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 13, + "CommandName": "Add-PnPAzureADGroupMember" }, { - "Id": 14, "Rank": 3, - "CommandName": "Add-PnPAzureADGroupMember", - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 14, + "CommandName": "Add-PnPAzureADGroupMember" }, { - "Id": 15, "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\"", + "Id": 15, + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Id": 16, "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 \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 16, + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Id": 17, "Rank": 3, - "CommandName": "Add-PnPAzureADGroupOwner", - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 17, + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Id": 18, "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 \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "Id": 18, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { - "Id": 19, "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-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "Id": 19, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { - "Id": 20, "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 $ct", + "Id": 20, + "CommandName": "Add-PnPContentType" }, { - "Id": 21, "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 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" }, { - "Id": 22, "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\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "Id": 22, + "CommandName": "Add-PnPContentType" }, { - "Id": 23, "Rank": 4, - "CommandName": "Add-PnPContentType", - "Command": "Add-PnPContentType -Name \"Project Item\"" + "Command": "Add-PnPContentType -Name \"Project Item\"", + "Id": 23, + "CommandName": "Add-PnPContentType" }, { - "Id": 24, "Rank": 5, - "CommandName": "Add-PnPContentType", - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "Id": 24, + "CommandName": "Add-PnPContentType" }, { - "Id": 25, "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Id": 25, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "Id": 26, "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Id": 26, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "Id": 27, "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 27, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "Id": 28, "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 28, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "Id": 29, "Rank": 1, - "CommandName": "Add-PnPContentTypeToList", - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Id": 29, + "CommandName": "Add-PnPContentTypeToList" }, { - "Id": 30, "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-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" }, { - "Id": 31, "Rank": 1, - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Id": 31, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "Id": 32, "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity", + "Id": 32, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "Id": 33, "Rank": 1, - "CommandName": "Add-PnPDocumentSet", - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Id": 33, + "CommandName": "Add-PnPDocumentSet" }, { - "Id": 34, "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 -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "Id": 34, + "CommandName": "Add-PnPEventReceiver" }, { - "Id": 35, "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 WebAdding -Synchronization Synchronous", + "Id": 35, + "CommandName": "Add-PnPEventReceiver" }, { - "Id": 36, "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 ListAdding -Synchronization Synchronous -Scope Site", + "Id": 36, + "CommandName": "Add-PnPEventReceiver" }, { - "Id": 37, "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-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "Id": 37, + "CommandName": "Add-PnPEventReceiver" }, { - "Id": 38, "Rank": 1, - "CommandName": "Add-PnPField", - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Id": 38, + "CommandName": "Add-PnPField" }, { - "Id": 39, "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 \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", + "Id": 39, + "CommandName": "Add-PnPField" }, { - "Id": 40, "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\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"", + "Id": 40, + "CommandName": "Add-PnPField" }, { - "Id": 41, "Rank": 4, - "CommandName": "Add-PnPField", - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Id": 41, + "CommandName": "Add-PnPField" }, { - "Id": 42, "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 Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", + "Id": 42, + "CommandName": "Add-PnPField" }, { - "Id": 43, "Rank": 6, - "CommandName": "Add-PnPField", - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "Id": 43, + "CommandName": "Add-PnPField" }, { - "Id": 44, "Rank": 1, - "CommandName": "Add-PnPFieldToContentType", - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 44, + "CommandName": "Add-PnPFieldToContentType" }, { - "Id": 45, "Rank": 1, - "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Id": 45, + "CommandName": "Add-PnPFile" }, { - "Id": 46, "Rank": 2, - "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Id": 46, + "CommandName": "Add-PnPFile" }, { - "Id": 47, "Rank": 3, - "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}" + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", + "Id": 47, + "CommandName": "Add-PnPFile" }, { - "Id": 48, "Rank": 4, - "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}" + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", + "Id": 48, + "CommandName": "Add-PnPFile" }, { - "Id": 49, "Rank": 5, - "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}" + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", + "Id": 49, + "CommandName": "Add-PnPFile" }, { - "Id": 50, "Rank": 6, - "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", + "Id": 50, + "CommandName": "Add-PnPFile" }, { - "Id": 51, "Rank": 7, - "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Id": 51, + "CommandName": "Add-PnPFile" }, { - "Id": 52, "Rank": 8, - "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Id": 52, + "CommandName": "Add-PnPFile" }, { - "Id": 53, "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\"", + "Id": 53, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Id": 54, "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 Edit -Password \"PnPRocks!\"", + "Id": 54, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Id": 55, "Rank": 3, - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "Id": 55, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Id": 56, "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\"", + "Id": 56, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "Id": 57, "Rank": 2, - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Id": 57, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "Id": 58, "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", + "Id": 58, + "CommandName": "Add-PnPFileSharingInvite" }, { - "Id": 59, "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 -SendInvitation -Role Owner", + "Id": 59, + "CommandName": "Add-PnPFileSharingInvite" }, { - "Id": 60, "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-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", + "Id": 60, + "CommandName": "Add-PnPFileSharingInvite" }, { - "Id": 61, "Rank": 1, - "CommandName": "Add-PnPFileToSiteTemplate", - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Id": 61, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Id": 62, "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 c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", + "Id": 62, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Id": 63, "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 \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "Id": 63, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Id": 64, "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate", - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "Id": 64, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Id": 65, "Rank": 5, - "CommandName": "Add-PnPFileToSiteTemplate", - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Id": 65, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Id": 66, "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\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 66, + "CommandName": "Add-PnPFileUserSharingLink" }, { - "Id": 67, "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-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 67, + "CommandName": "Add-PnPFileUserSharingLink" }, { - "Id": 68, "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 username@tenant.onmicrosoft.com -Role CanEdit", + "Id": 68, + "CommandName": "Add-PnPFlowOwner" }, { - "Id": 69, "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 CanView", + "Id": 69, + "CommandName": "Add-PnPFlowOwner" }, { - "Id": 70, "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 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare", + "Id": 70, + "CommandName": "Add-PnPFlowOwner" }, { - "Id": 71, "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-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", + "Id": 71, + "CommandName": "Add-PnPFlowOwner" }, { - "Id": 72, "Rank": 1, - "CommandName": "Add-PnPFolder", - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 72, + "CommandName": "Add-PnPFolder" }, { - "Id": 73, "Rank": 2, - "CommandName": "Add-PnPFolder", - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Id": 73, + "CommandName": "Add-PnPFolder" }, { - "Id": 74, "Rank": 3, - "CommandName": "Add-PnPFolder", - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Id": 74, + "CommandName": "Add-PnPFolder" }, { - "Id": 75, "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 75, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Id": 76, "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!\"", + "Id": 76, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Id": 77, "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-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "Id": 77, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Id": 78, "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 78, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "Id": 79, "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Id": 79, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "Id": 80, "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", + "Id": 80, + "CommandName": "Add-PnPFolderSharingInvite" }, { - "Id": 81, "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 -SendInvitation -Role Owner", + "Id": 81, + "CommandName": "Add-PnPFolderSharingInvite" }, { - "Id": 82, "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-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", + "Id": 82, + "CommandName": "Add-PnPFolderSharingInvite" }, { - "Id": 83, "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\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 83, + "CommandName": "Add-PnPFolderUserSharingLink" }, { - "Id": 84, "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-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 84, + "CommandName": "Add-PnPFolderUserSharingLink" }, { - "Id": 85, "Rank": 1, - "CommandName": "Add-PnPGroupMember", - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 85, + "CommandName": "Add-PnPGroupMember" }, { - "Id": 86, "Rank": 2, - "CommandName": "Add-PnPGroupMember", - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Id": 86, + "CommandName": "Add-PnPGroupMember" }, { - "Id": 87, "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-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 87, + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { - "Id": 88, "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation", - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "Id": 88, + "CommandName": "Add-PnPHubSiteAssociation" }, { - "Id": 89, "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation", - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "Id": 89, + "CommandName": "Add-PnPHubToHubAssociation" }, { - "Id": 90, "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/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "Id": 90, + "CommandName": "Add-PnPHubToHubAssociation" }, { - "Id": 91, "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-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" }, { - "Id": 92, "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock", - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site", + "Id": 92, + "CommandName": "Add-PnPJavaScriptBlock" }, { - "Id": 93, "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock", - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'", + "Id": 93, + "CommandName": "Add-PnPJavaScriptBlock" }, { - "Id": 94, "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 -Sequence 9999 -Scope Site", + "Id": 94, + "CommandName": "Add-PnPJavaScriptLink" }, { - "Id": 95, "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink", - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Id": 95, + "CommandName": "Add-PnPJavaScriptLink" }, { - "Id": 96, "Rank": 1, - "CommandName": "Add-PnPListDesign", - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "Id": 96, + "CommandName": "Add-PnPListDesign" }, { - "Id": 97, "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-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" }, { - "Id": 98, "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Id": 98, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Id": 99, "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Id": 99, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Id": 100, "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Id": 100, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Id": 101, "Rank": 1, - "CommandName": "Add-PnPListItem", - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 101, + "CommandName": "Add-PnPListItem" }, { - "Id": 102, "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\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 102, + "CommandName": "Add-PnPListItem" }, { - "Id": 103, "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 @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "Id": 103, + "CommandName": "Add-PnPListItem" }, { - "Id": 104, "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\"} -Folder \"projects/europe\"", + "Id": 104, + "CommandName": "Add-PnPListItem" }, { - "Id": 105, "Rank": 5, - "CommandName": "Add-PnPListItem", - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Id": 105, + "CommandName": "Add-PnPListItem" }, { - "Id": 106, "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 -Path c:\\temp\\test.mp4", + "Id": 106, + "CommandName": "Add-PnPListItemAttachment" }, { - "Id": 107, "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.txt\" -Content '{ \"Test\": \"Value\" }'", + "Id": 107, + "CommandName": "Add-PnPListItemAttachment" }, { - "Id": 108, "Rank": 3, - "CommandName": "Add-PnPListItemAttachment", - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Id": 108, + "CommandName": "Add-PnPListItemAttachment" }, { - "Id": 109, "Rank": 1, - "CommandName": "Add-PnPListItemComment", - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Id": 109, + "CommandName": "Add-PnPListItemComment" }, { - "Id": 110, "Rank": 1, - "CommandName": "Add-PnPMasterPage", - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Id": 110, + "CommandName": "Add-PnPMasterPage" }, { - "Id": 111, "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\"", + "Id": 111, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "Id": 112, "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 112, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "Id": 113, "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\"", + "Id": 113, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "Id": 114, "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Command": "Add-PnPMicrosoft365GroupOwner -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\" -RemoveExisting", + "Id": 114, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "Id": 115, "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 -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "Id": 115, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Id": 116, "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Id": 116, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Id": 117, "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Id": 117, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Id": 118, "Rank": 1, - "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Id": 118, + "CommandName": "Add-PnPNavigationNode" }, { - "Id": 119, "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 USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "Id": 119, + "CommandName": "Add-PnPNavigationNode" }, { - "Id": 120, "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\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "Id": 120, + "CommandName": "Add-PnPNavigationNode" }, { - "Id": 121, "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 \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "Id": 121, + "CommandName": "Add-PnPNavigationNode" }, { - "Id": 122, "Rank": 5, - "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Id": 122, + "CommandName": "Add-PnPNavigationNode" }, { - "Id": 123, "Rank": 6, - "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Id": 123, + "CommandName": "Add-PnPNavigationNode" }, { - "Id": 124, "Rank": 7, - "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Id": 124, + "CommandName": "Add-PnPNavigationNode" }, { - "Id": 125, "Rank": 8, - "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "Id": 125, + "CommandName": "Add-PnPNavigationNode" }, { - "Id": 126, "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\"", + "Id": 126, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Id": 127, "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\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", + "Id": 127, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Id": 128, "Rank": 3, - "CommandName": "Add-PnPOrgAssetsLibrary", - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Id": 128, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Id": 129, "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite", - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Id": 129, + "CommandName": "Add-PnPOrgNewsSite" }, { - "Id": 130, "Rank": 1, - "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\"" + "Command": "Add-PnPPage -Name \"NewPage\"", + "Id": 130, + "CommandName": "Add-PnPPage" }, { - "Id": 131, "Rank": 2, - "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Id": 131, + "CommandName": "Add-PnPPage" }, { - "Id": 132, "Rank": 3, - "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Id": 132, + "CommandName": "Add-PnPPage" }, { - "Id": 133, "Rank": 4, - "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Id": 133, + "CommandName": "Add-PnPPage" }, { - "Id": 134, "Rank": 5, - "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"Folder/NewPage\"" + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Id": 134, + "CommandName": "Add-PnPPage" }, { - "Id": 135, "Rank": 6, - "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Id": 135, + "CommandName": "Add-PnPPage" }, { - "Id": 136, "Rank": 7, - "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 136, + "CommandName": "Add-PnPPage" }, { - "Id": 137, "Rank": 8, - "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Translate" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Id": 137, + "CommandName": "Add-PnPPage" }, { - "Id": 138, "Rank": 9, - "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 138, + "CommandName": "Add-PnPPage" }, { - "Id": 139, "Rank": 10, - "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 139, + "CommandName": "Add-PnPPage" }, { - "Id": 140, "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\"", + "Id": 140, + "CommandName": "Add-PnPPageImageWebPart" }, { - "Id": 141, "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-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" }, { - "Id": 142, "Rank": 1, - "CommandName": "Add-PnPPageSection", - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Id": 142, + "CommandName": "Add-PnPPageSection" }, { - "Id": 143, "Rank": 2, - "CommandName": "Add-PnPPageSection", - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Id": 143, + "CommandName": "Add-PnPPageSection" }, { - "Id": 144, "Rank": 1, - "CommandName": "Add-PnPPageTextPart", - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Id": 144, + "CommandName": "Add-PnPPageTextPart" }, { - "Id": 145, "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\"", + "Id": 145, + "CommandName": "Add-PnPPageTextPart" }, { - "Id": 146, "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-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", + "Id": 146, + "CommandName": "Add-PnPPageTextPart" }, { - "Id": 147, "Rank": 1, - "CommandName": "Add-PnPPageWebPart", - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Id": 147, + "CommandName": "Add-PnPPageWebPart" }, { - "Id": 148, "Rank": 2, - "CommandName": "Add-PnPPageWebPart", - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Id": 148, + "CommandName": "Add-PnPPageWebPart" }, { - "Id": 149, "Rank": 3, - "CommandName": "Add-PnPPageWebPart", - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Id": 149, + "CommandName": "Add-PnPPageWebPart" }, { - "Id": 150, "Rank": 1, - "CommandName": "Add-PnPPlannerBucket", - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Id": 150, + "CommandName": "Add-PnPPlannerBucket" }, { - "Id": 151, "Rank": 2, - "CommandName": "Add-PnPPlannerBucket", - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Id": 151, + "CommandName": "Add-PnPPlannerBucket" }, { - "Id": 152, "Rank": 1, - "CommandName": "Add-PnPPlannerRoster", - "Command": "Add-PnPPlannerRoster" + "Command": "Add-PnPPlannerRoster", + "Id": 152, + "CommandName": "Add-PnPPlannerRoster" }, { - "Id": 153, "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember", - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 153, + "CommandName": "Add-PnPPlannerRosterMember" }, { - "Id": 154, "Rank": 1, - "CommandName": "Add-PnPPlannerTask", - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 154, + "CommandName": "Add-PnPPlannerTask" }, { - "Id": 155, "Rank": 2, - "CommandName": "Add-PnPPlannerTask", - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 155, + "CommandName": "Add-PnPPlannerTask" }, { - "Id": 156, "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-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Id": 156, + "CommandName": "Add-PnPPlannerTask" }, { - "Id": 157, "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition", - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 157, + "CommandName": "Add-PnPPublishingImageRendition" }, { - "Id": 158, "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'", + "Id": 158, + "CommandName": "Add-PnPPublishingPage" }, { - "Id": 159, "Rank": 2, - "CommandName": "Add-PnPPublishingPage", - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Id": 159, + "CommandName": "Add-PnPPublishingPage" }, { - "Id": 160, "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-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 160, + "CommandName": "Add-PnPPublishingPageLayout" }, { - "Id": 161, "Rank": 1, - "CommandName": "Add-PnPRoleDefinition", - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Id": 161, + "CommandName": "Add-PnPRoleDefinition" }, { - "Id": 162, "Rank": 2, - "CommandName": "Add-PnPRoleDefinition", - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Id": 162, + "CommandName": "Add-PnPRoleDefinition" }, { - "Id": 163, "Rank": 3, - "CommandName": "Add-PnPRoleDefinition", - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Id": 163, + "CommandName": "Add-PnPRoleDefinition" }, { - "Id": 164, "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 164, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Id": 165, "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 165, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Id": 166, "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Id": 166, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Id": 167, "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Command": "Add-PnPSiteCollectionAppCatalog" + "Command": "Add-PnPSiteCollectionAppCatalog", + "Id": 167, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "Id": 168, "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 168, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "Id": 169, "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", + "Id": 169, + "CommandName": "Add-PnPSiteDesign" }, { - "Id": 170, "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/siteassets/logo.png", + "Id": 170, + "CommandName": "Add-PnPSiteDesign" }, { - "Id": 171, "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-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" }, { - "Id": 172, "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", + "Id": 172, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "Id": 173, "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 -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Id": 173, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "Id": 174, "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-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" }, { - "Id": 175, "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask", - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 175, + "CommandName": "Add-PnPSiteDesignTask" }, { - "Id": 176, "Rank": 2, - "CommandName": "Add-PnPSiteDesignTask", - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Id": 176, + "CommandName": "Add-PnPSiteDesignTask" }, { - "Id": 177, "Rank": 1, - "CommandName": "Add-PnPSiteScript", - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Id": 177, + "CommandName": "Add-PnPSiteScript" }, { - "Id": 178, "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage", - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "Id": 178, + "CommandName": "Add-PnPSiteScriptPackage" }, { - "Id": 179, "Rank": 1, - "CommandName": "Add-PnPSiteTemplate", - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Id": 179, + "CommandName": "Add-PnPSiteTemplate" }, { - "Id": 180, "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", + "Id": 180, + "CommandName": "Add-PnPStoredCredential" }, { - "Id": 181, "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)", + "Id": 181, + "CommandName": "Add-PnPStoredCredential" }, { - "Id": 182, "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-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" }, { - "Id": 183, "Rank": 1, - "CommandName": "Add-PnPTaxonomyField", - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Id": 183, + "CommandName": "Add-PnPTaxonomyField" }, { - "Id": 184, "Rank": 2, - "CommandName": "Add-PnPTaxonomyField", - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Id": 184, + "CommandName": "Add-PnPTaxonomyField" }, { - "Id": 185, "Rank": 1, - "CommandName": "Add-PnPTeamsChannel", - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Id": 185, + "CommandName": "Add-PnPTeamsChannel" }, { - "Id": 186, "Rank": 2, - "CommandName": "Add-PnPTeamsChannel", - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Id": 186, + "CommandName": "Add-PnPTeamsChannel" }, { - "Id": 187, "Rank": 3, - "CommandName": "Add-PnPTeamsChannel", - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "Id": 187, + "CommandName": "Add-PnPTeamsChannel" }, { - "Id": 188, "Rank": 4, - "CommandName": "Add-PnPTeamsChannel", - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -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" }, { - "Id": 189, "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 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", + "Id": 189, + "CommandName": "Add-PnpTeamsChannelUser" }, { - "Id": 190, "Rank": 2, - "CommandName": "Add-PnpTeamsChannelUser", - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "Id": 190, + "CommandName": "Add-PnpTeamsChannelUser" }, { - "Id": 191, "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 WebSite -ContentUrl \"https://aka.ms/m365pnp\"", + "Id": 191, + "CommandName": "Add-PnPTeamsTab" }, { - "Id": 192, "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 PDF -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/General/MyFile.pdf\" -EntityId \"null\"", + "Id": 192, + "CommandName": "Add-PnPTeamsTab" }, { - "Id": 193, "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 Tab Name\" -Type SharePointPageAndList -WebSiteUrl \"https://contoso.sharepoint.com/sites/Marketing/SitePages/Home.aspx\"", + "Id": 193, + "CommandName": "Add-PnPTeamsTab" }, { - "Id": 194, "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-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" }, { - "Id": 195, "Rank": 1, - "CommandName": "Add-PnPTeamsTeam", - "Command": "Add-PnPTeamsTeam" + "Command": "Add-PnPTeamsTeam", + "Id": 195, + "CommandName": "Add-PnPTeamsTeam" }, { - "Id": 196, "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 Owner", + "Id": 196, + "CommandName": "Add-PnPTeamsUser" }, { - "Id": 197, "Rank": 2, - "CommandName": "Add-PnPTeamsUser", - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 197, + "CommandName": "Add-PnPTeamsUser" }, { - "Id": 198, "Rank": 3, - "CommandName": "Add-PnPTeamsUser", - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "Id": 198, + "CommandName": "Add-PnPTeamsUser" }, { - "Id": 199, "Rank": 4, - "CommandName": "Add-PnPTeamsUser", - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Id": 199, + "CommandName": "Add-PnPTeamsUser" }, { - "Id": 200, "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin", - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 200, + "CommandName": "Add-PnPTenantCdnOrigin" }, { - "Id": 201, "Rank": 1, - "CommandName": "Add-PnPTenantSequence", - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Id": 201, + "CommandName": "Add-PnPTenantSequence" }, { - "Id": 202, "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite", - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Id": 202, + "CommandName": "Add-PnPTenantSequenceSite" }, { - "Id": 203, "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite", - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Id": 203, + "CommandName": "Add-PnPTenantSequenceSubSite" }, { - "Id": 204, "Rank": 1, - "CommandName": "Add-PnPTermToTerm", - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Id": 204, + "CommandName": "Add-PnPTermToTerm" }, { - "Id": 205, "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\"", + "Id": 205, + "CommandName": "Add-PnPView" }, { - "Id": 206, "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\" -Paged -RowLimit 100", + "Id": 206, + "CommandName": "Add-PnPView" }, { - "Id": 207, "Rank": 3, - "CommandName": "Add-PnPView", - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", + "Id": 207, + "CommandName": "Add-PnPView" }, { - "Id": 208, "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 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" }, { - "Id": 209, "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 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" }, { - "Id": 210, "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-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" }, { - "Id": 211, "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", + "Id": 211, + "CommandName": "Add-PnPWebhookSubscription" }, { - "Id": 212, "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\"", + "Id": 212, + "CommandName": "Add-PnPWebhookSubscription" }, { - "Id": 213, "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-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", + "Id": 213, + "CommandName": "Add-PnPWebhookSubscription" }, { - "Id": 214, "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\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "Id": 214, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { - "Id": 215, "Rank": 2, - "CommandName": "Add-PnPWebPartToWebPartPage", - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $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" }, { - "Id": 216, "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\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "Id": 216, + "CommandName": "Add-PnPWebPartToWikiPage" }, { - "Id": 217, "Rank": 2, - "CommandName": "Add-PnPWebPartToWikiPage", - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $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" }, { - "Id": 218, "Rank": 1, - "CommandName": "Add-PnPWikiPage", - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Id": 218, + "CommandName": "Add-PnPWikiPage" }, { - "Id": 219, "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember", - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Id": 219, + "CommandName": "Clear-PnPAzureADGroupMember" }, { - "Id": 220, "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner", - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Id": 220, + "CommandName": "Clear-PnPAzureADGroupOwner" }, { - "Id": 221, "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues", - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Id": 221, + "CommandName": "Clear-PnPDefaultColumnValues" }, { - "Id": 222, "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues", - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Id": 222, + "CommandName": "Clear-PnPDefaultColumnValues" }, { - "Id": 223, "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord", - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 223, + "CommandName": "Clear-PnPListItemAsRecord" }, { - "Id": 224, "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Id": 224, + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { - "Id": 225, "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Id": 225, + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { - "Id": 226, "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem", - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 226, + "CommandName": "Clear-PnpRecycleBinItem" }, { - "Id": 227, "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem", - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Id": 227, + "CommandName": "Clear-PnpRecycleBinItem" }, { - "Id": 228, "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem", - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Id": 228, + "CommandName": "Clear-PnpRecycleBinItem" }, { - "Id": 229, "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Command": "Clear-PnPTenantAppCatalogUrl" + "Command": "Clear-PnPTenantAppCatalogUrl", + "Id": 229, + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { - "Id": 230, "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\"", + "Id": 230, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "Id": 231, "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 231, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "Id": 232, "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": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", + "Id": 232, + "CommandName": "Connect-PnPOnline" }, { - "Id": 233, "Rank": 1, - "CommandName": "Convert-PnPFile", - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", + "Id": 233, + "CommandName": "Convert-PnPFile" }, { - "Id": 234, "Rank": 2, - "CommandName": "Convert-PnPFile", - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", + "Id": 234, + "CommandName": "Convert-PnPFile" }, { - "Id": 235, "Rank": 3, - "CommandName": "Convert-PnPFile", - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", + "Id": 235, + "CommandName": "Convert-PnPFile" }, { - "Id": 236, "Rank": 4, - "CommandName": "Convert-PnPFile", - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", + "Id": 236, + "CommandName": "Convert-PnPFile" }, { - "Id": 237, "Rank": 5, - "CommandName": "Convert-PnPFile", - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", + "Id": 237, + "CommandName": "Convert-PnPFile" }, { - "Id": 238, "Rank": 6, - "CommandName": "Convert-PnPFile", - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", + "Id": 238, + "CommandName": "Convert-PnPFile" }, { - "Id": 239, "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Id": 239, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "Id": 240, "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Id": 240, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "Id": 241, "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate", - "Command": "Convert-PnPSiteTemplate -Path template.xml" + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Id": 241, + "CommandName": "Convert-PnPSiteTemplate" }, { - "Id": 242, "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate", - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Id": 242, + "CommandName": "Convert-PnPSiteTemplate" }, { - "Id": 243, "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate", - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Id": 243, + "CommandName": "Convert-PnPSiteTemplate" }, { - "Id": 244, "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Id": 244, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "Id": 245, "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Id": 245, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "Id": 246, "Rank": 1, - "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Id": 246, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 247, "Rank": 2, - "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Id": 247, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 248, "Rank": 3, - "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Id": 248, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 249, "Rank": 4, - "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Id": 249, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 250, "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 -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 250, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 251, "Rank": 6, - "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Id": 251, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 252, "Rank": 7, - "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Id": 252, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 253, "Rank": 8, - "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite", + "Id": 253, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 254, "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\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 254, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 255, "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 File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Id": 255, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 256, "Rank": 11, - "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Id": 256, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 257, "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\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 257, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 258, "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 \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 258, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 259, "Rank": 14, - "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Id": 259, + "CommandName": "ConvertTo-PnPPage" }, { - "Id": 260, "Rank": 1, - "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 260, + "CommandName": "Copy-PnPFile" }, { - "Id": 261, "Rank": 2, - "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 261, + "CommandName": "Copy-PnPFile" }, { - "Id": 262, "Rank": 3, - "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 262, + "CommandName": "Copy-PnPFile" }, { - "Id": 263, "Rank": 4, - "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 263, + "CommandName": "Copy-PnPFile" }, { - "Id": 264, "Rank": 5, - "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 264, + "CommandName": "Copy-PnPFile" }, { - "Id": 265, "Rank": 6, - "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 265, + "CommandName": "Copy-PnPFile" }, { - "Id": 266, "Rank": 7, - "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 266, + "CommandName": "Copy-PnPFile" }, { - "Id": 267, "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/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 267, + "CommandName": "Copy-PnPFile" }, { - "Id": 268, "Rank": 9, - "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 268, + "CommandName": "Copy-PnPFile" }, { - "Id": 269, "Rank": 10, - "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 269, + "CommandName": "Copy-PnPFile" }, { - "Id": 270, "Rank": 1, - "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 270, + "CommandName": "Copy-PnPFolder" }, { - "Id": 271, "Rank": 2, - "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 271, + "CommandName": "Copy-PnPFolder" }, { - "Id": 272, "Rank": 3, - "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 272, + "CommandName": "Copy-PnPFolder" }, { - "Id": 273, "Rank": 4, - "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 273, + "CommandName": "Copy-PnPFolder" }, { - "Id": 274, "Rank": 5, - "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 274, + "CommandName": "Copy-PnPFolder" }, { - "Id": 275, "Rank": 6, - "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 275, + "CommandName": "Copy-PnPFolder" }, { - "Id": 276, "Rank": 7, - "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 276, + "CommandName": "Copy-PnPFolder" }, { - "Id": 277, "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/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 277, + "CommandName": "Copy-PnPFolder" }, { - "Id": 278, "Rank": 9, - "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 278, + "CommandName": "Copy-PnPFolder" }, { - "Id": 279, "Rank": 10, - "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 279, + "CommandName": "Copy-PnPFolder" }, { - "Id": 280, "Rank": 1, - "CommandName": "Copy-PnPItemProxy", - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Id": 280, + "CommandName": "Copy-PnPItemProxy" }, { - "Id": 281, "Rank": 1, - "CommandName": "Copy-PnPList", - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Id": 281, + "CommandName": "Copy-PnPList" }, { - "Id": 282, "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", + "Id": 282, + "CommandName": "Copy-PnPList" }, { - "Id": 283, "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 -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Id": 283, + "CommandName": "Copy-PnPList" }, { - "Id": 284, "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-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", + "Id": 284, + "CommandName": "Copy-PnPList" }, { - "Id": 285, "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 ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "Id": 285, + "CommandName": "Copy-PnPTeamsTeam" }, { - "Id": 286, "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam", - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "Id": 286, + "CommandName": "Copy-PnPTeamsTeam" }, { - "Id": 287, "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 apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Id": 287, + "CommandName": "Copy-PnPTeamsTeam" }, { - "Id": 288, "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": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Id": 288, + "CommandName": "Copy-PnPTeamsTeam" }, { - "Id": 289, "Rank": 1, - "CommandName": "Disable-PnPFeature", - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 289, + "CommandName": "Disable-PnPFeature" }, { - "Id": 290, "Rank": 2, - "CommandName": "Disable-PnPFeature", - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 290, + "CommandName": "Disable-PnPFeature" }, { - "Id": 291, "Rank": 3, - "CommandName": "Disable-PnPFeature", - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 291, + "CommandName": "Disable-PnPFeature" }, { - "Id": 292, "Rank": 1, - "CommandName": "Disable-PnPPageScheduling", - "Command": "Disable-PnPPageScheduling" + "Command": "Disable-PnPPageScheduling", + "Id": 292, + "CommandName": "Disable-PnPPageScheduling" }, { - "Id": 293, "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry", - "Command": "Disable-PnPPowerShellTelemetry" + "Command": "Disable-PnPPowerShellTelemetry", + "Id": 293, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "Id": 294, "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry", - "Command": "Disable-PnPPowerShellTelemetry -Force" + "Command": "Disable-PnPPowerShellTelemetry -Force", + "Id": 294, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "Id": 295, "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Command": "Disable-PnPSharingForNonOwnersOfSite" + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 295, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Id": 296, "Rank": 1, - "CommandName": "Disable-PnPSiteClassification", - "Command": "Disable-PnPSiteClassification" + "Command": "Disable-PnPSiteClassification", + "Id": 296, + "CommandName": "Disable-PnPSiteClassification" }, { - "Id": 297, "Rank": 1, - "CommandName": "Disconnect-PnPOnline", - "Command": "Disconnect-PnPOnline" + "Command": "Disconnect-PnPOnline", + "Id": 297, + "CommandName": "Disconnect-PnPOnline" }, { - "Id": 298, "Rank": 1, - "CommandName": "Enable-PnPCommSite", - "Command": "Enable-PnPCommSite" + "Command": "Enable-PnPCommSite", + "Id": 298, + "CommandName": "Enable-PnPCommSite" }, { - "Id": 299, "Rank": 2, - "CommandName": "Enable-PnPCommSite", - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Id": 299, + "CommandName": "Enable-PnPCommSite" }, { - "Id": 300, "Rank": 1, - "CommandName": "Enable-PnPFeature", - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 300, + "CommandName": "Enable-PnPFeature" }, { - "Id": 301, "Rank": 2, - "CommandName": "Enable-PnPFeature", - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 301, + "CommandName": "Enable-PnPFeature" }, { - "Id": 302, "Rank": 3, - "CommandName": "Enable-PnPFeature", - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 302, + "CommandName": "Enable-PnPFeature" }, { - "Id": 303, "Rank": 1, - "CommandName": "Enable-PnPPageScheduling", - "Command": "Enable-PnPPageScheduling" + "Command": "Enable-PnPPageScheduling", + "Id": 303, + "CommandName": "Enable-PnPPageScheduling" }, { - "Id": 304, "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry", - "Command": "Enable-PnPPowerShellTelemetry" + "Command": "Enable-PnPPowerShellTelemetry", + "Id": 304, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "Id": 305, "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry", - "Command": "Enable-PnPPowerShellTelemetry -Force" + "Command": "Enable-PnPPowerShellTelemetry -Force", + "Id": 305, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "Id": 306, "Rank": 1, - "CommandName": "Enable-PnPSiteClassification", - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Id": 306, + "CommandName": "Enable-PnPSiteClassification" }, { - "Id": 307, "Rank": 2, - "CommandName": "Enable-PnPSiteClassification", - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 307, + "CommandName": "Enable-PnPSiteClassification" }, { - "Id": 308, "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate", - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Id": 308, + "CommandName": "Export-PnPListToSiteTemplate" }, { - "Id": 309, "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate", - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Id": 309, + "CommandName": "Export-PnPListToSiteTemplate" }, { - "Id": 310, "Rank": 1, - "CommandName": "Export-PnPPage", - "Command": "Export-PnPPage -Identity Home.aspx" + "Command": "Export-PnPPage -Identity Home.aspx", + "Id": 310, + "CommandName": "Export-PnPPage" }, { - "Id": 311, "Rank": 1, - "CommandName": "Export-PnPPageMapping", - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Id": 311, + "CommandName": "Export-PnPPageMapping" }, { - "Id": 312, "Rank": 2, - "CommandName": "Export-PnPPageMapping", - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Id": 312, + "CommandName": "Export-PnPPageMapping" }, { - "Id": 313, "Rank": 3, - "CommandName": "Export-PnPPageMapping", - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Id": 313, + "CommandName": "Export-PnPPageMapping" }, { - "Id": 314, "Rank": 1, - "CommandName": "Export-PnPTaxonomy", - "Command": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy", + "Id": 314, + "CommandName": "Export-PnPTaxonomy" }, { - "Id": 315, "Rank": 2, - "CommandName": "Export-PnPTaxonomy", - "Command": "Export-PnPTaxonomy -Path c:\\output.txt" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Id": 315, + "CommandName": "Export-PnPTaxonomy" }, { - "Id": 316, "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", + "Id": 316, + "CommandName": "Export-PnPTaxonomy" }, { - "Id": 317, "Rank": 4, - "CommandName": "Export-PnPTaxonomy", - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Id": 317, + "CommandName": "Export-PnPTaxonomy" }, { - "Id": 318, "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml", - "Command": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml", + "Id": 318, + "CommandName": "Export-PnPTermGroupToXml" }, { - "Id": 319, "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml", - "Command": "Export-PnPTermGroupToXml -Out output.xml" + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Id": 319, + "CommandName": "Export-PnPTermGroupToXml" }, { - "Id": 320, "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml", - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Id": 320, + "CommandName": "Export-PnPTermGroupToXml" }, { - "Id": 321, "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\"", + "Id": 321, + "CommandName": "Export-PnPUserInfo" }, { - "Id": 322, "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-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 322, + "CommandName": "Export-PnPUserInfo" }, { - "Id": 323, "Rank": 1, - "CommandName": "Export-PnPUserProfile", - "Command": "Export-PnPUserProfile -LoginName user@domain.com" + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Id": 323, + "CommandName": "Export-PnPUserProfile" }, { - "Id": 324, "Rank": 2, - "CommandName": "Export-PnPUserProfile", - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 324, + "CommandName": "Export-PnPUserProfile" }, { - "Id": 325, "Rank": 1, - "CommandName": "Find-PnPFile", - "Command": "Find-PnPFile -Match *.master" + "Command": "Find-PnPFile -Match *.master", + "Id": 325, + "CommandName": "Find-PnPFile" }, { - "Id": 326, "Rank": 2, - "CommandName": "Find-PnPFile", - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Id": 326, + "CommandName": "Find-PnPFile" }, { - "Id": 327, "Rank": 3, - "CommandName": "Find-PnPFile", - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Id": 327, + "CommandName": "Find-PnPFile" }, { - "Id": 328, "Rank": 1, - "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken", + "Id": 328, + "CommandName": "Get-PnPAccessToken" }, { - "Id": 329, "Rank": 2, - "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -Decoded" + "Command": "Get-PnPAccessToken -Decoded", + "Id": 329, + "CommandName": "Get-PnPAccessToken" }, { - "Id": 330, "Rank": 3, - "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Id": 330, + "CommandName": "Get-PnPAccessToken" }, { - "Id": 331, "Rank": 4, - "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -ResourceTypeName ARM" + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Id": 331, + "CommandName": "Get-PnPAccessToken" }, { - "Id": 332, "Rank": 5, - "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Id": 332, + "CommandName": "Get-PnPAccessToken" }, { - "Id": 333, "Rank": 1, - "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert" + "Command": "Get-PnPAlert", + "Id": 333, + "CommandName": "Get-PnPAlert" }, { - "Id": 334, "Rank": 2, - "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -List \"Demo List\"" + "Command": "Get-PnPAlert -List \"Demo List\"", + "Id": 334, + "CommandName": "Get-PnPAlert" }, { - "Id": 335, "Rank": 3, - "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 335, + "CommandName": "Get-PnPAlert" }, { - "Id": 336, "Rank": 4, - "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -Title \"Demo Alert\"" + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Id": 336, + "CommandName": "Get-PnPAlert" }, { - "Id": 337, "Rank": 5, - "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -AllUsers" + "Command": "Get-PnPAlert -AllUsers", + "Id": 337, + "CommandName": "Get-PnPAlert" }, { - "Id": 338, "Rank": 6, - "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Id": 338, + "CommandName": "Get-PnPAlert" }, { - "Id": 339, "Rank": 1, - "CommandName": "Get-PnPApp", - "Command": "Get-PnPApp" + "Command": "Get-PnPApp", + "Id": 339, + "CommandName": "Get-PnPApp" }, { - "Id": 340, "Rank": 2, - "CommandName": "Get-PnPApp", - "Command": "Get-PnPApp -Scope Site" + "Command": "Get-PnPApp -Scope Site", + "Id": 340, + "CommandName": "Get-PnPApp" }, { - "Id": 341, "Rank": 3, - "CommandName": "Get-PnPApp", - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 341, + "CommandName": "Get-PnPApp" }, { - "Id": 342, "Rank": 1, - "CommandName": "Get-PnPAppErrors", - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Id": 342, + "CommandName": "Get-PnPAppErrors" }, { - "Id": 343, "Rank": 2, - "CommandName": "Get-PnPAppErrors", - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Id": 343, + "CommandName": "Get-PnPAppErrors" }, { - "Id": 344, "Rank": 1, - "CommandName": "Get-PnPAppInfo", - "Command": "Get-PnPAppInfo -Name \"Excel Service\"" + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Id": 344, + "CommandName": "Get-PnPAppInfo" }, { - "Id": 345, "Rank": 2, - "CommandName": "Get-PnPAppInfo", - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 345, + "CommandName": "Get-PnPAppInfo" }, { - "Id": 346, "Rank": 3, - "CommandName": "Get-PnPAppInfo", - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Id": 346, + "CommandName": "Get-PnPAppInfo" }, { - "Id": 347, "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer", - "Command": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer", + "Id": 347, + "CommandName": "Get-PnPApplicationCustomizer" }, { - "Id": 348, "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer", - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 348, + "CommandName": "Get-PnPApplicationCustomizer" }, { - "Id": 349, "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer", - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Id": 349, + "CommandName": "Get-PnPApplicationCustomizer" }, { - "Id": 350, "Rank": 1, - "CommandName": "Get-PnPAuditing", - "Command": "Get-PnPAuditing" + "Command": "Get-PnPAuditing", + "Id": 350, + "CommandName": "Get-PnPAuditing" }, { - "Id": 351, "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm", - "Command": "Get-PnPAuthenticationRealm" + "Command": "Get-PnPAuthenticationRealm", + "Id": 351, + "CommandName": "Get-PnPAuthenticationRealm" }, { - "Id": 352, "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm", - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Id": 352, + "CommandName": "Get-PnPAuthenticationRealm" }, { - "Id": 353, "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage", - "Command": "Get-PnPAvailableLanguage" + "Command": "Get-PnPAvailableLanguage", + "Id": 353, + "CommandName": "Get-PnPAvailableLanguage" }, { - "Id": 354, "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Command": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel", + "Id": 354, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 355, "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Id": 355, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 356, "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Id": 356, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 357, "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification", - "Command": "Get-PnPAvailableSiteClassification" + "Command": "Get-PnPAvailableSiteClassification", + "Id": 357, + "CommandName": "Get-PnPAvailableSiteClassification" }, { - "Id": 358, "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal", + "Id": 358, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Id": 359, "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Id": 359, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Id": 360, "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Id": 360, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Id": 361, "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Id": 361, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Id": 362, "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Command": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 362, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 363, "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Id": 363, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 364, "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Id": 364, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 365, "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Command": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn", + "Id": 365, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 366, "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Id": 366, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 367, "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Id": 367, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 368, "Rank": 1, - "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp", + "Id": 368, + "CommandName": "Get-PnPAzureADApp" }, { - "Id": 369, "Rank": 2, - "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp -Identity MyApp" + "Command": "Get-PnPAzureADApp -Identity MyApp", + "Id": 369, + "CommandName": "Get-PnPAzureADApp" }, { - "Id": 370, "Rank": 3, - "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 370, + "CommandName": "Get-PnPAzureADApp" }, { - "Id": 371, "Rank": 4, - "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Id": 371, + "CommandName": "Get-PnPAzureADApp" }, { - "Id": 372, "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission", - "Command": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission", + "Id": 372, + "CommandName": "Get-PnPAzureADAppPermission" }, { - "Id": 373, "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission", - "Command": "Get-PnPAzureADAppPermission -Identity MyApp" + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Id": 373, + "CommandName": "Get-PnPAzureADAppPermission" }, { - "Id": 374, "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission", - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 374, + "CommandName": "Get-PnPAzureADAppPermission" }, { - "Id": 375, "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission", + "Id": 375, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Id": 376, "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Id": 376, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Id": 377, "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Id": 377, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Id": 378, "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Id": 378, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Id": 379, "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Id": 379, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Id": 380, "Rank": 1, - "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup", + "Id": 380, + "CommandName": "Get-PnPAzureADGroup" }, { - "Id": 381, "Rank": 2, - "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $groupId" + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Id": 381, + "CommandName": "Get-PnPAzureADGroup" }, { - "Id": 382, "Rank": 3, - "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Id": 382, + "CommandName": "Get-PnPAzureADGroup" }, { - "Id": 383, "Rank": 4, - "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Id": 383, + "CommandName": "Get-PnPAzureADGroup" }, { - "Id": 384, "Rank": 5, - "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $group" + "Command": "Get-PnPAzureADGroup -Identity $group", + "Id": 384, + "CommandName": "Get-PnPAzureADGroup" }, { - "Id": 385, "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember", - "Command": "Get-PnPAzureADGroupMember -Identity $groupId" + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Id": 385, + "CommandName": "Get-PnPAzureADGroupMember" }, { - "Id": 386, "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember", - "Command": "Get-PnPAzureADGroupMember -Identity $group" + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Id": 386, + "CommandName": "Get-PnPAzureADGroupMember" }, { - "Id": 387, "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner", - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Id": 387, + "CommandName": "Get-PnPAzureADGroupOwner" }, { - "Id": 388, "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner", - "Command": "Get-PnPAzureADGroupOwner -Identity $group" + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Id": 388, + "CommandName": "Get-PnPAzureADGroupOwner" }, { - "Id": 389, "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal", + "Id": 389, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Id": 390, "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Id": 390, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Id": 391, "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Id": 391, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Id": 392, "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Id": 392, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Id": 393, "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Id": 393, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Id": 394, "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 394, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 395, "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 395, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 396, "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 396, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "Id": 397, "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Id": 397, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "Id": 398, "Rank": 1, - "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser", + "Id": 398, + "CommandName": "Get-PnPAzureADUser" }, { - "Id": 399, "Rank": 2, - "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -EndIndex 50" + "Command": "Get-PnPAzureADUser -EndIndex 50", + "Id": 399, + "CommandName": "Get-PnPAzureADUser" }, { - "Id": 400, "Rank": 3, - "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 400, + "CommandName": "Get-PnPAzureADUser" }, { - "Id": 401, "Rank": 4, - "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Identity john@contoso.com" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Id": 401, + "CommandName": "Get-PnPAzureADUser" }, { - "Id": 402, "Rank": 5, - "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Id": 402, + "CommandName": "Get-PnPAzureADUser" }, { - "Id": 403, "Rank": 6, - "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Id": 403, + "CommandName": "Get-PnPAzureADUser" }, { - "Id": 404, "Rank": 7, - "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Id": 404, + "CommandName": "Get-PnPAzureADUser" }, { - "Id": 405, "Rank": 8, - "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Delta" + "Command": "Get-PnPAzureADUser -Delta", + "Id": 405, + "CommandName": "Get-PnPAzureADUser" }, { - "Id": 406, "Rank": 9, - "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Id": 406, + "CommandName": "Get-PnPAzureADUser" }, { - "Id": 407, "Rank": 10, - "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Id": 407, + "CommandName": "Get-PnPAzureADUser" }, { - "Id": 408, "Rank": 1, - "CommandName": "Get-PnPAzureCertificate", - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Id": 408, + "CommandName": "Get-PnPAzureCertificate" }, { - "Id": 409, "Rank": 2, - "CommandName": "Get-PnPAzureCertificate", - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Id": 409, + "CommandName": "Get-PnPAzureCertificate" }, { - "Id": 410, "Rank": 3, - "CommandName": "Get-PnPAzureCertificate", - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Id": 410, + "CommandName": "Get-PnPAzureCertificate" }, { - "Id": 411, "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout", - "Command": "Get-PnPBrowserIdleSignout" + "Command": "Get-PnPBrowserIdleSignout", + "Id": 411, + "CommandName": "Get-PnPBrowserIdleSignout" }, { - "Id": 412, "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Id": 412, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Id": 413, "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Command": "Get-PnPBuiltInDesignPackageVisibility" + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 413, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Id": 414, "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 414, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 415, "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Id": 415, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 416, "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Id": 416, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 417, "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Id": 417, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 418, "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Id": 418, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 419, "Rank": 1, - "CommandName": "Get-PnPChangeLog", - "Command": "Get-PnPChangeLog" + "Command": "Get-PnPChangeLog", + "Id": 419, + "CommandName": "Get-PnPChangeLog" }, { - "Id": 420, "Rank": 2, - "CommandName": "Get-PnPChangeLog", - "Command": "Get-PnPChangeLog -Nightly" + "Command": "Get-PnPChangeLog -Nightly", + "Id": 420, + "CommandName": "Get-PnPChangeLog" }, { - "Id": 421, "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Id": 421, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "Id": 422, "Rank": 2, - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Id": 422, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "Id": 423, "Rank": 1, - "CommandName": "Get-PnPContainer", - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996" + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", + "Id": 423, + "CommandName": "Get-PnPContainer" }, { - "Id": 424, "Rank": 2, - "CommandName": "Get-PnPContainer", - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "Id": 424, + "CommandName": "Get-PnPContainer" }, { - "Id": 425, "Rank": 3, - "CommandName": "Get-PnPContainer", - "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" + "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", + "Id": 425, + "CommandName": "Get-PnPContainer" }, { - "Id": 426, "Rank": 1, - "CommandName": "Get-PnPContainerTypeConfiguration", - "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996" + "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", + "Id": 426, + "CommandName": "Get-PnPContainerTypeConfiguration" }, { - "Id": 427, "Rank": 1, - "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType" + "Command": "Get-PnPContentType", + "Id": 427, + "CommandName": "Get-PnPContentType" }, { - "Id": 428, "Rank": 2, - "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -InSiteHierarchy" + "Command": "Get-PnPContentType -InSiteHierarchy", + "Id": 428, + "CommandName": "Get-PnPContentType" }, { - "Id": 429, "Rank": 3, - "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -Identity \"Project Document\"" + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Id": 429, + "CommandName": "Get-PnPContentType" }, { - "Id": 430, "Rank": 4, - "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -List \"Documents\"" + "Command": "Get-PnPContentType -List \"Documents\"", + "Id": 430, + "CommandName": "Get-PnPContentType" }, { - "Id": 431, "Rank": 5, - "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -Includes \"SchemaXml\"" + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "Id": 431, + "CommandName": "Get-PnPContentType" }, { - "Id": 432, "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus", - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Id": 432, + "CommandName": "Get-PnPContentTypePublishingStatus" }, { - "Id": 433, "Rank": 1, - "CommandName": "Get-PnPCustomAction", - "Command": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction", + "Id": 433, + "CommandName": "Get-PnPCustomAction" }, { - "Id": 434, "Rank": 2, - "CommandName": "Get-PnPCustomAction", - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 434, + "CommandName": "Get-PnPCustomAction" }, { - "Id": 435, "Rank": 3, - "CommandName": "Get-PnPCustomAction", - "Command": "Get-PnPCustomAction -Scope web" + "Command": "Get-PnPCustomAction -Scope web", + "Id": 435, + "CommandName": "Get-PnPCustomAction" }, { - "Id": 436, "Rank": 1, - "CommandName": "Get-PnPDeletedContainer", - "Command": "Get-PnPDeletedContainer" + "Command": "Get-PnPDeletedContainer", + "Id": 436, + "CommandName": "Get-PnPDeletedContainer" }, { - "Id": 437, "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Command": "Get-PnPDeletedMicrosoft365Group" + "Command": "Get-PnPDeletedMicrosoft365Group", + "Id": 437, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "Id": 438, "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 438, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "Id": 439, "Rank": 1, - "CommandName": "Get-PnPDeletedTeam", - "Command": "Get-PnPDeletedTeam" + "Command": "Get-PnPDeletedTeam", + "Id": 439, + "CommandName": "Get-PnPDeletedTeam" }, { - "Id": 440, "Rank": 1, - "CommandName": "Get-PnPDiagnostics", - "Command": "Get-PnPDiagnostics" + "Command": "Get-PnPDiagnostics", + "Id": 440, + "CommandName": "Get-PnPDiagnostics" }, { - "Id": 441, "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation", - "Command": "Get-PnPDisableSpacesActivation" + "Command": "Get-PnPDisableSpacesActivation", + "Id": 441, + "CommandName": "Get-PnPDisableSpacesActivation" }, { - "Id": 442, "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate", - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Id": 442, + "CommandName": "Get-PnPDocumentSetTemplate" }, { - "Id": 443, "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate", - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Id": 443, + "CommandName": "Get-PnPDocumentSetTemplate" }, { - "Id": 444, "Rank": 1, - "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver", + "Id": 444, + "CommandName": "Get-PnPEventReceiver" }, { - "Id": 445, "Rank": 2, - "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 445, + "CommandName": "Get-PnPEventReceiver" }, { - "Id": 446, "Rank": 3, - "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Identity MyReceiver" + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Id": 446, + "CommandName": "Get-PnPEventReceiver" }, { - "Id": 447, "Rank": 4, - "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -List \"ProjectList\"" + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Id": 447, + "CommandName": "Get-PnPEventReceiver" }, { - "Id": 448, "Rank": 5, - "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 448, + "CommandName": "Get-PnPEventReceiver" }, { - "Id": 449, "Rank": 6, - "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Id": 449, + "CommandName": "Get-PnPEventReceiver" }, { - "Id": 450, "Rank": 7, - "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Scope Site" + "Command": "Get-PnPEventReceiver -Scope Site", + "Id": 450, + "CommandName": "Get-PnPEventReceiver" }, { - "Id": 451, "Rank": 8, - "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Scope Web" + "Command": "Get-PnPEventReceiver -Scope Web", + "Id": 451, + "CommandName": "Get-PnPEventReceiver" }, { - "Id": 452, "Rank": 9, - "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Scope All" + "Command": "Get-PnPEventReceiver -Scope All", + "Id": 452, + "CommandName": "Get-PnPEventReceiver" }, { - "Id": 453, "Rank": 1, - "CommandName": "Get-PnPException", - "Command": "Get-PnPException" + "Command": "Get-PnPException", + "Id": 453, + "CommandName": "Get-PnPException" }, { - "Id": 454, "Rank": 2, - "CommandName": "Get-PnPException", - "Command": "Get-PnPException -All" + "Command": "Get-PnPException -All", + "Id": 454, + "CommandName": "Get-PnPException" }, { - "Id": 455, "Rank": 1, - "CommandName": "Get-PnPExternalUser", - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Id": 455, + "CommandName": "Get-PnPExternalUser" }, { - "Id": 456, "Rank": 2, - "CommandName": "Get-PnPExternalUser", - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Id": 456, + "CommandName": "Get-PnPExternalUser" }, { - "Id": 457, "Rank": 1, - "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature" + "Command": "Get-PnPFeature", + "Id": 457, + "CommandName": "Get-PnPFeature" }, { - "Id": 458, "Rank": 2, - "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature -Scope Site" + "Command": "Get-PnPFeature -Scope Site", + "Id": 458, + "CommandName": "Get-PnPFeature" }, { - "Id": 459, "Rank": 3, - "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 459, + "CommandName": "Get-PnPFeature" }, { - "Id": 460, "Rank": 4, - "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Id": 460, + "CommandName": "Get-PnPFeature" }, { - "Id": 461, "Rank": 1, - "CommandName": "Get-PnPField", - "Command": "Get-PnPField" + "Command": "Get-PnPField", + "Id": 461, + "CommandName": "Get-PnPField" }, { - "Id": 462, "Rank": 2, - "CommandName": "Get-PnPField", - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 462, + "CommandName": "Get-PnPField" }, { - "Id": 463, "Rank": 3, - "CommandName": "Get-PnPField", - "Command": "Get-PnPField -Group \"Custom Columns\"" + "Command": "Get-PnPField -Group \"Custom Columns\"", + "Id": 463, + "CommandName": "Get-PnPField" }, { - "Id": 464, "Rank": 1, - "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "Id": 464, + "CommandName": "Get-PnPFile" }, { - "Id": 465, "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/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "Id": 465, + "CommandName": "Get-PnPFile" }, { - "Id": 466, "Rank": 3, - "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "Id": 466, + "CommandName": "Get-PnPFile" }, { - "Id": 467, "Rank": 4, - "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "Id": 467, + "CommandName": "Get-PnPFile" }, { - "Id": 468, "Rank": 5, - "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "Id": 468, + "CommandName": "Get-PnPFile" }, { - "Id": 469, "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 /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "Id": 469, + "CommandName": "Get-PnPFile" }, { - "Id": 470, "Rank": 7, - "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Id": 470, + "CommandName": "Get-PnPFile" }, { - "Id": 471, "Rank": 1, - "CommandName": "Get-PnPFileInFolder", - "Command": "Get-PnPFileInFolder" + "Command": "Get-PnPFileInFolder", + "Id": 471, + "CommandName": "Get-PnPFileInFolder" }, { - "Id": 472, "Rank": 2, - "CommandName": "Get-PnPFileInFolder", - "Command": "Get-PnPFileInFolder -Recurse" + "Command": "Get-PnPFileInFolder -Recurse", + "Id": 472, + "CommandName": "Get-PnPFileInFolder" }, { - "Id": 473, "Rank": 3, - "CommandName": "Get-PnPFileInFolder", - "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"" + "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", + "Id": 473, + "CommandName": "Get-PnPFileInFolder" }, { - "Id": 474, "Rank": 4, - "CommandName": "Get-PnPFileInFolder", - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 474, + "CommandName": "Get-PnPFileInFolder" }, { - "Id": 475, "Rank": 5, - "CommandName": "Get-PnPFileInFolder", - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", + "Id": 475, + "CommandName": "Get-PnPFileInFolder" }, { - "Id": 476, "Rank": 1, - "CommandName": "Get-PnPFileSharingLink", - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 476, + "CommandName": "Get-PnPFileSharingLink" }, { - "Id": 477, "Rank": 1, - "CommandName": "Get-PnPFileVersion", - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Id": 477, + "CommandName": "Get-PnPFileVersion" }, { - "Id": 478, "Rank": 2, - "CommandName": "Get-PnPFileVersion", - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Id": 478, + "CommandName": "Get-PnPFileVersion" }, { - "Id": 479, "Rank": 1, - "CommandName": "Get-PnPFlow", - "Command": "Get-PnPFlow -AsAdmin" + "Command": "Get-PnPFlow -AsAdmin", + "Id": 479, + "CommandName": "Get-PnPFlow" }, { - "Id": 480, "Rank": 2, - "CommandName": "Get-PnPFlow", - "Command": "Get-PnPFlow -SharingStatus SharedWithMe" + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Id": 480, + "CommandName": "Get-PnPFlow" }, { - "Id": 481, "Rank": 3, - "CommandName": "Get-PnPFlow", - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Id": 481, + "CommandName": "Get-PnPFlow" }, { - "Id": 482, "Rank": 1, - "CommandName": "Get-PnPFlowOwner", - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Id": 482, + "CommandName": "Get-PnPFlowOwner" }, { - "Id": 483, "Rank": 1, - "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder" + "Command": "Get-PnPFolder", + "Id": 483, + "CommandName": "Get-PnPFolder" }, { - "Id": 484, "Rank": 2, - "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -CurrentWebRootFolder" + "Command": "Get-PnPFolder -CurrentWebRootFolder", + "Id": 484, + "CommandName": "Get-PnPFolder" }, { - "Id": 485, "Rank": 3, - "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -Url \"Shared Documents\"" + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Id": 485, + "CommandName": "Get-PnPFolder" }, { - "Id": 486, "Rank": 4, - "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Id": 486, + "CommandName": "Get-PnPFolder" }, { - "Id": 487, "Rank": 5, - "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"" + "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", + "Id": 487, + "CommandName": "Get-PnPFolder" }, { - "Id": 488, "Rank": 6, - "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -List \"Shared Documents\"" + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Id": 488, + "CommandName": "Get-PnPFolder" }, { - "Id": 489, "Rank": 1, - "CommandName": "Get-PnPFolderInFolder", - "Command": "Get-PnPFolderInFolder" + "Command": "Get-PnPFolderInFolder", + "Id": 489, + "CommandName": "Get-PnPFolderInFolder" }, { - "Id": 490, "Rank": 2, - "CommandName": "Get-PnPFolderInFolder", - "Command": "Get-PnPFolderInFolder -Recurse" + "Command": "Get-PnPFolderInFolder -Recurse", + "Id": 490, + "CommandName": "Get-PnPFolderInFolder" }, { - "Id": 491, "Rank": 3, - "CommandName": "Get-PnPFolderInFolder", - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"" + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", + "Id": 491, + "CommandName": "Get-PnPFolderInFolder" }, { - "Id": 492, "Rank": 4, - "CommandName": "Get-PnPFolderInFolder", - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Id": 492, + "CommandName": "Get-PnPFolderInFolder" }, { - "Id": 493, "Rank": 5, - "CommandName": "Get-PnPFolderInFolder", - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Id": 493, + "CommandName": "Get-PnPFolderInFolder" }, { - "Id": 494, "Rank": 6, - "CommandName": "Get-PnPFolderInFolder", - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", + "Id": 494, + "CommandName": "Get-PnPFolderInFolder" }, { - "Id": 495, "Rank": 1, - "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem", + "Id": 495, + "CommandName": "Get-PnPFolderItem" }, { - "Id": 496, "Rank": 2, - "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -Recurse" + "Command": "Get-PnPFolderItem -Recurse", + "Id": 496, + "CommandName": "Get-PnPFolderItem" }, { - "Id": 497, "Rank": 3, - "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Id": 497, + "CommandName": "Get-PnPFolderItem" }, { - "Id": 498, "Rank": 4, - "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 498, + "CommandName": "Get-PnPFolderItem" }, { - "Id": 499, "Rank": 5, - "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Id": 499, + "CommandName": "Get-PnPFolderItem" }, { - "Id": 500, "Rank": 6, - "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Id": 500, + "CommandName": "Get-PnPFolderItem" }, { - "Id": 501, "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink", - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 501, + "CommandName": "Get-PnPFolderSharingLink" }, { - "Id": 502, "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric", - "Command": "Get-PnPFolderStorageMetric" + "Command": "Get-PnPFolderStorageMetric", + "Id": 502, + "CommandName": "Get-PnPFolderStorageMetric" }, { - "Id": 503, "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric", - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Id": 503, + "CommandName": "Get-PnPFolderStorageMetric" }, { - "Id": 504, "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric", - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Id": 504, + "CommandName": "Get-PnPFolderStorageMetric" }, { - "Id": 505, "Rank": 1, - "CommandName": "Get-PnPFooter", - "Command": "Get-PnPFooter" + "Command": "Get-PnPFooter", + "Id": 505, + "CommandName": "Get-PnPFooter" }, { - "Id": 506, "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken", - "Command": "Get-PnPGraphAccessToken" + "Command": "Get-PnPGraphAccessToken", + "Id": 506, + "CommandName": "Get-PnPGraphAccessToken" }, { - "Id": 507, "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken", - "Command": "Get-PnPGraphAccessToken -Decoded" + "Command": "Get-PnPGraphAccessToken -Decoded", + "Id": 507, + "CommandName": "Get-PnPGraphAccessToken" }, { - "Id": 508, "Rank": 1, - "CommandName": "Get-PnPGraphSubscription", - "Command": "Get-PnPGraphSubscription" + "Command": "Get-PnPGraphSubscription", + "Id": 508, + "CommandName": "Get-PnPGraphSubscription" }, { - "Id": 509, "Rank": 2, - "CommandName": "Get-PnPGraphSubscription", - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 509, + "CommandName": "Get-PnPGraphSubscription" }, { - "Id": 510, "Rank": 1, - "CommandName": "Get-PnPGroup", - "Command": "Get-PnPGroup" + "Command": "Get-PnPGroup", + "Id": 510, + "CommandName": "Get-PnPGroup" }, { - "Id": 511, "Rank": 2, - "CommandName": "Get-PnPGroup", - "Command": "Get-PnPGroup -Identity 'My Site Users'" + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Id": 511, + "CommandName": "Get-PnPGroup" }, { - "Id": 512, "Rank": 3, - "CommandName": "Get-PnPGroup", - "Command": "Get-PnPGroup -AssociatedMemberGroup" + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Id": 512, + "CommandName": "Get-PnPGroup" }, { - "Id": 513, "Rank": 1, - "CommandName": "Get-PnPGroupMember", - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Id": 513, + "CommandName": "Get-PnPGroupMember" }, { - "Id": 514, "Rank": 2, - "CommandName": "Get-PnPGroupMember", - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Id": 514, + "CommandName": "Get-PnPGroupMember" }, { - "Id": 515, "Rank": 1, - "CommandName": "Get-PnPGroupPermissions", - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Id": 515, + "CommandName": "Get-PnPGroupPermissions" }, { - "Id": 516, "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes", - "Command": "Get-PnPHideDefaultThemes" + "Command": "Get-PnPHideDefaultThemes", + "Id": 516, + "CommandName": "Get-PnPHideDefaultThemes" }, { - "Id": 517, "Rank": 1, - "CommandName": "Get-PnPHomePage", - "Command": "Get-PnPHomePage" + "Command": "Get-PnPHomePage", + "Id": 517, + "CommandName": "Get-PnPHomePage" }, { - "Id": 518, "Rank": 1, - "CommandName": "Get-PnPHomeSite", - "Command": "Get-PnPHomeSite" + "Command": "Get-PnPHomeSite", + "Id": 518, + "CommandName": "Get-PnPHomeSite" }, { - "Id": 519, "Rank": 2, - "CommandName": "Get-PnPHomeSite", - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Id": 519, + "CommandName": "Get-PnPHomeSite" }, { - "Id": 520, "Rank": 3, - "CommandName": "Get-PnPHomeSite", - "Command": "Get-PnPHomeSite -Detailed" + "Command": "Get-PnPHomeSite -Detailed", + "Id": 520, + "CommandName": "Get-PnPHomeSite" }, { - "Id": 521, "Rank": 1, - "CommandName": "Get-PnPHubSite", - "Command": "Get-PnPHubSite" + "Command": "Get-PnPHubSite", + "Id": 521, + "CommandName": "Get-PnPHubSite" }, { - "Id": 522, "Rank": 2, - "CommandName": "Get-PnPHubSite", - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 522, + "CommandName": "Get-PnPHubSite" }, { - "Id": 523, "Rank": 3, - "CommandName": "Get-PnPHubSite", - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Id": 523, + "CommandName": "Get-PnPHubSite" }, { - "Id": 524, "Rank": 1, - "CommandName": "Get-PnPHubSiteChild", - "Command": "Get-PnPHubSiteChild" + "Command": "Get-PnPHubSiteChild", + "Id": 524, + "CommandName": "Get-PnPHubSiteChild" }, { - "Id": 525, "Rank": 2, - "CommandName": "Get-PnPHubSiteChild", - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 525, + "CommandName": "Get-PnPHubSiteChild" }, { - "Id": 526, "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Command": "Get-PnPInPlaceRecordsManagement" + "Command": "Get-PnPInPlaceRecordsManagement", + "Id": 526, + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { - "Id": 527, "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Id": 527, + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { - "Id": 528, "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink" + "Command": "Get-PnPJavaScriptLink", + "Id": 528, + "CommandName": "Get-PnPJavaScriptLink" }, { - "Id": 529, "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Scope All" + "Command": "Get-PnPJavaScriptLink -Scope All", + "Id": 529, + "CommandName": "Get-PnPJavaScriptLink" }, { - "Id": 530, "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Scope Web" + "Command": "Get-PnPJavaScriptLink -Scope Web", + "Id": 530, + "CommandName": "Get-PnPJavaScriptLink" }, { - "Id": 531, "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Scope Site" + "Command": "Get-PnPJavaScriptLink -Scope Site", + "Id": 531, + "CommandName": "Get-PnPJavaScriptLink" }, { - "Id": 532, "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Name Test" + "Command": "Get-PnPJavaScriptLink -Name Test", + "Id": 532, + "CommandName": "Get-PnPJavaScriptLink" }, { - "Id": 533, "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite", - "Command": "Get-PnPKnowledgeHubSite" + "Command": "Get-PnPKnowledgeHubSite", + "Id": 533, + "CommandName": "Get-PnPKnowledgeHubSite" }, { - "Id": 534, "Rank": 1, - "CommandName": "Get-PnPLabel", - "Command": "Get-PnPLabel" + "Command": "Get-PnPLabel", + "Id": 534, + "CommandName": "Get-PnPLabel" }, { - "Id": 535, "Rank": 2, - "CommandName": "Get-PnPLabel", - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Id": 535, + "CommandName": "Get-PnPLabel" }, { - "Id": 536, "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus", - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Id": 536, + "CommandName": "Get-PnPLargeListOperationStatus" }, { - "Id": 537, "Rank": 1, - "CommandName": "Get-PnPList", - "Command": "Get-PnPList" + "Command": "Get-PnPList", + "Id": 537, + "CommandName": "Get-PnPList" }, { - "Id": 538, "Rank": 2, - "CommandName": "Get-PnPList", - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 538, + "CommandName": "Get-PnPList" }, { - "Id": 539, "Rank": 3, - "CommandName": "Get-PnPList", - "Command": "Get-PnPList -Identity Lists/Announcements" + "Command": "Get-PnPList -Identity Lists/Announcements", + "Id": 539, + "CommandName": "Get-PnPList" }, { - "Id": 540, "Rank": 4, - "CommandName": "Get-PnPList", - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Id": 540, + "CommandName": "Get-PnPList" }, { - "Id": 541, "Rank": 5, - "CommandName": "Get-PnPList", - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Id": 541, + "CommandName": "Get-PnPList" }, { - "Id": 542, "Rank": 1, - "CommandName": "Get-PnPListDesign", - "Command": "Get-PnPListDesign" + "Command": "Get-PnPListDesign", + "Id": 542, + "CommandName": "Get-PnPListDesign" }, { - "Id": 543, "Rank": 2, - "CommandName": "Get-PnPListDesign", - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 543, + "CommandName": "Get-PnPListDesign" }, { - "Id": 544, "Rank": 3, - "CommandName": "Get-PnPListDesign", - "Command": "Get-PnPListDesign -Identity ListEvent" + "Command": "Get-PnPListDesign -Identity ListEvent", + "Id": 544, + "CommandName": "Get-PnPListDesign" }, { - "Id": 545, "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement", - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Id": 545, + "CommandName": "Get-PnPListInformationRightsManagement" }, { - "Id": 546, "Rank": 1, - "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks" + "Command": "Get-PnPListItem -List Tasks", + "Id": 546, + "CommandName": "Get-PnPListItem" }, { - "Id": 547, "Rank": 2, - "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Id 1" + "Command": "Get-PnPListItem -List Tasks -Id 1", + "Id": 547, + "CommandName": "Get-PnPListItem" }, { - "Id": 548, "Rank": 3, - "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Id": 548, + "CommandName": "Get-PnPListItem" }, { - "Id": 549, "Rank": 4, - "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"" + "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"", + "Id": 549, + "CommandName": "Get-PnPListItem" }, { - "Id": 550, "Rank": 5, - "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"" + "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"", + "Id": 550, + "CommandName": "Get-PnPListItem" }, { - "Id": 551, "Rank": 6, - "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -PageSize 1000" + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "Id": 551, + "CommandName": "Get-PnPListItem" }, { - "Id": 552, "Rank": 7, - "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "Id": 552, + "CommandName": "Get-PnPListItem" }, { - "Id": 553, "Rank": 8, - "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Id": 553, + "CommandName": "Get-PnPListItem" }, { - "Id": 554, "Rank": 9, - "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Id": 554, + "CommandName": "Get-PnPListItem" }, { - "Id": 555, "Rank": 1, - "CommandName": "Get-PnPListItemAttachment", - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "Id": 555, + "CommandName": "Get-PnPListItemAttachment" }, { - "Id": 556, "Rank": 2, - "CommandName": "Get-PnPListItemAttachment", - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Id": 556, + "CommandName": "Get-PnPListItemAttachment" }, { - "Id": 557, "Rank": 1, - "CommandName": "Get-PnPListItemComment", - "Command": "Get-PnPListItemComment -List Tasks -Identity 1" + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Id": 557, + "CommandName": "Get-PnPListItemComment" }, { - "Id": 558, "Rank": 1, - "CommandName": "Get-PnPListItemPermission", - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Id": 558, + "CommandName": "Get-PnPListItemPermission" }, { - "Id": 559, "Rank": 1, - "CommandName": "Get-PnPListItemVersion", - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Id": 559, + "CommandName": "Get-PnPListItemVersion" }, { - "Id": 560, "Rank": 1, - "CommandName": "Get-PnPListPermissions", - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Id": 560, + "CommandName": "Get-PnPListPermissions" }, { - "Id": 561, "Rank": 2, - "CommandName": "Get-PnPListPermissions", - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Id": 561, + "CommandName": "Get-PnPListPermissions" }, { - "Id": 562, "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration", - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Id": 562, + "CommandName": "Get-PnPListRecordDeclaration" }, { - "Id": 563, "Rank": 1, - "CommandName": "Get-PnPMasterPage", - "Command": "Get-PnPMasterPage" + "Command": "Get-PnPMasterPage", + "Id": 563, + "CommandName": "Get-PnPMasterPage" }, { - "Id": 564, "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Command": "Get-PnPMessageCenterAnnouncement" + "Command": "Get-PnPMessageCenterAnnouncement", + "Id": 564, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "Id": 565, "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Id": 565, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "Id": 566, "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Command": "Get-PnPMicrosoft365ExpiringGroup" + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 566, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Id": 567, "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Id": 567, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Id": 568, "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group", + "Id": 568, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 569, "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $groupId" + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Id": 569, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 570, "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Id": 570, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 571, "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Id": 571, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 572, "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $group" + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Id": 572, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 573, "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Id": 573, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 574, "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Command": "Get-PnPMicrosoft365GroupEndpoint" + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 574, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 575, "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Id": 575, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 576, "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 576, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 577, "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Id": 577, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Id": 578, "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Id": 578, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Id": 579, "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Id": 579, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Id": 580, "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Id": 580, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "Id": 581, "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Id": 581, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "Id": 582, "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Command": "Get-PnPMicrosoft365GroupSettings" + "Command": "Get-PnPMicrosoft365GroupSettings", + "Id": 582, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "Id": 583, "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Id": 583, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "Id": 584, "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Command": "Get-PnPMicrosoft365GroupSettingTemplates" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 584, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Id": 585, "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Id": 585, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Id": 586, "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Command": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupTeam", + "Id": 586, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 587, "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Id": 587, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 588, "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 588, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 589, "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Command": "Get-PnPMicrosoft365GroupYammerCommunity" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 589, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 590, "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Id": 590, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 591, "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 591, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 592, "Rank": 1, - "CommandName": "Get-PnPNavigationNode", - "Command": "Get-PnPNavigationNode" + "Command": "Get-PnPNavigationNode", + "Id": 592, + "CommandName": "Get-PnPNavigationNode" }, { - "Id": 593, "Rank": 2, - "CommandName": "Get-PnPNavigationNode", - "Command": "Get-PnPNavigationNode -Location QuickLaunch" + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Id": 593, + "CommandName": "Get-PnPNavigationNode" }, { - "Id": 594, "Rank": 3, - "CommandName": "Get-PnPNavigationNode", - "Command": "Get-PnPNavigationNode -Location TopNavigationBar" + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Id": 594, + "CommandName": "Get-PnPNavigationNode" }, { - "Id": 595, "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary", - "Command": "Get-PnPOrgAssetsLibrary" + "Command": "Get-PnPOrgAssetsLibrary", + "Id": 595, + "CommandName": "Get-PnPOrgAssetsLibrary" }, { - "Id": 596, "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite", - "Command": "Get-PnPOrgNewsSite" + "Command": "Get-PnPOrgNewsSite", + "Id": 596, + "CommandName": "Get-PnPOrgNewsSite" }, { - "Id": 597, "Rank": 1, - "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Id": 597, + "CommandName": "Get-PnPPage" }, { - "Id": 598, "Rank": 2, - "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage \"MyPage\"" + "Command": "Get-PnPPage \"MyPage\"", + "Id": 598, + "CommandName": "Get-PnPPage" }, { - "Id": 599, "Rank": 3, - "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Id": 599, + "CommandName": "Get-PnPPage" }, { - "Id": 600, "Rank": 4, - "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Id": 600, + "CommandName": "Get-PnPPage" }, { - "Id": 601, "Rank": 1, - "CommandName": "Get-PnPPageComponent", - "Command": "Get-PnPPageComponent -Page Home" + "Command": "Get-PnPPageComponent -Page Home", + "Id": 601, + "CommandName": "Get-PnPPageComponent" }, { - "Id": 602, "Rank": 2, - "CommandName": "Get-PnPPageComponent", - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 602, + "CommandName": "Get-PnPPageComponent" }, { - "Id": 603, "Rank": 3, - "CommandName": "Get-PnPPageComponent", - "Command": "Get-PnPPageComponent -Page Home -ListAvailable" + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Id": 603, + "CommandName": "Get-PnPPageComponent" }, { - "Id": 604, "Rank": 1, - "CommandName": "Get-PnPPlannerBucket", - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 604, + "CommandName": "Get-PnPPlannerBucket" }, { - "Id": 605, "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration", - "Command": "Get-PnPPlannerConfiguration" + "Command": "Get-PnPPlannerConfiguration", + "Id": 605, + "CommandName": "Get-PnPPlannerConfiguration" }, { - "Id": 606, "Rank": 1, - "CommandName": "Get-PnPPlannerPlan", - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Id": 606, + "CommandName": "Get-PnPPlannerPlan" }, { - "Id": 607, "Rank": 2, - "CommandName": "Get-PnPPlannerPlan", - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Id": 607, + "CommandName": "Get-PnPPlannerPlan" }, { - "Id": 608, "Rank": 3, - "CommandName": "Get-PnPPlannerPlan", - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Id": 608, + "CommandName": "Get-PnPPlannerPlan" }, { - "Id": 609, "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember", - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 609, + "CommandName": "Get-PnPPlannerRosterMember" }, { - "Id": 610, "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan", - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Id": 610, + "CommandName": "Get-PnPPlannerRosterPlan" }, { - "Id": 611, "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan", - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 611, + "CommandName": "Get-PnPPlannerRosterPlan" }, { - "Id": 612, "Rank": 1, - "CommandName": "Get-PnPPlannerTask", - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 612, + "CommandName": "Get-PnPPlannerTask" }, { - "Id": 613, "Rank": 2, - "CommandName": "Get-PnPPlannerTask", - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 613, + "CommandName": "Get-PnPPlannerTask" }, { - "Id": 614, "Rank": 3, - "CommandName": "Get-PnPPlannerTask", - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 614, + "CommandName": "Get-PnPPlannerTask" }, { - "Id": 615, "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy", - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 615, + "CommandName": "Get-PnPPlannerUserPolicy" }, { - "Id": 616, "Rank": 1, - "CommandName": "Get-PnPPowerPlatformConnector", - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Id": 616, + "CommandName": "Get-PnPPowerPlatformConnector" }, { - "Id": 617, "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Command": "Get-PnPPowerPlatformEnvironment" + "Command": "Get-PnPPowerPlatformEnvironment", + "Id": 617, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 618, "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Id": 618, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 619, "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Id": 619, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 620, "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Command": "Get-PnPPowerShellTelemetryEnabled" + "Command": "Get-PnPPowerShellTelemetryEnabled", + "Id": 620, + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { - "Id": 621, "Rank": 1, - "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag" + "Command": "Get-PnPPropertyBag", + "Id": 621, + "CommandName": "Get-PnPPropertyBag" }, { - "Id": 622, "Rank": 2, - "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Key MyKey" + "Command": "Get-PnPPropertyBag -Key MyKey", + "Id": 622, + "CommandName": "Get-PnPPropertyBag" }, { - "Id": 623, "Rank": 3, - "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Folder /MyFolder" + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Id": 623, + "CommandName": "Get-PnPPropertyBag" }, { - "Id": 624, "Rank": 4, - "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Id": 624, + "CommandName": "Get-PnPPropertyBag" }, { - "Id": 625, "Rank": 5, - "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Id": 625, + "CommandName": "Get-PnPPropertyBag" }, { - "Id": 626, "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition", - "Command": "Get-PnPPublishingImageRendition" + "Command": "Get-PnPPublishingImageRendition", + "Id": 626, + "CommandName": "Get-PnPPublishingImageRendition" }, { - "Id": 627, "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition", - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Id": 627, + "CommandName": "Get-PnPPublishingImageRendition" }, { - "Id": 628, "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition", - "Command": "Get-PnPPublishingImageRendition -Identity 2" + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Id": 628, + "CommandName": "Get-PnPPublishingImageRendition" }, { - "Id": 629, "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem" + "Command": "Get-PnPRecycleBinItem", + "Id": 629, + "CommandName": "Get-PnPRecycleBinItem" }, { - "Id": 630, "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Id": 630, + "CommandName": "Get-PnPRecycleBinItem" }, { - "Id": 631, "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -FirstStage" + "Command": "Get-PnPRecycleBinItem -FirstStage", + "Id": 631, + "CommandName": "Get-PnPRecycleBinItem" }, { - "Id": 632, "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -SecondStage" + "Command": "Get-PnPRecycleBinItem -SecondStage", + "Id": 632, + "CommandName": "Get-PnPRecycleBinItem" }, { - "Id": 633, "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -RowLimit 10000" + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Id": 633, + "CommandName": "Get-PnPRecycleBinItem" }, { - "Id": 634, "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails", - "Command": "Get-PnPRequestAccessEmails" + "Command": "Get-PnPRequestAccessEmails", + "Id": 634, + "CommandName": "Get-PnPRequestAccessEmails" }, { - "Id": 635, "Rank": 1, - "CommandName": "Get-PnPRetentionLabel", - "Command": "Get-PnPRetentionLabel" + "Command": "Get-PnPRetentionLabel", + "Id": 635, + "CommandName": "Get-PnPRetentionLabel" }, { - "Id": 636, "Rank": 2, - "CommandName": "Get-PnPRetentionLabel", - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Id": 636, + "CommandName": "Get-PnPRetentionLabel" }, { - "Id": 637, "Rank": 1, - "CommandName": "Get-PnPRoleDefinition", - "Command": "Get-PnPRoleDefinition" + "Command": "Get-PnPRoleDefinition", + "Id": 637, + "CommandName": "Get-PnPRoleDefinition" }, { - "Id": 638, "Rank": 2, - "CommandName": "Get-PnPRoleDefinition", - "Command": "Get-PnPRoleDefinition -Identity Read" + "Command": "Get-PnPRoleDefinition -Identity Read", + "Id": 638, + "CommandName": "Get-PnPRoleDefinition" }, { - "Id": 639, "Rank": 3, - "CommandName": "Get-PnPRoleDefinition", - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Id": 639, + "CommandName": "Get-PnPRoleDefinition" }, { - "Id": 640, "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration", + "Id": 640, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 641, "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site" + "Command": "Get-PnPSearchConfiguration -Scope Site", + "Id": 641, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 642, "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Subscription" + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Id": 642, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 643, "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 643, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 644, "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Id": 644, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 645, "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Id": 645, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 646, "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Id": 646, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 647, "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Id": 647, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 648, "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog", + "Id": 648, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 649, "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Id": 649, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 650, "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Id": 650, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 651, "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Id": 651, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 652, "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Id": 652, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 653, "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Id": 653, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 654, "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Id": 654, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 655, "Rank": 1, - "CommandName": "Get-PnPSearchSettings", - "Command": "Get-PnPSearchSettings" + "Command": "Get-PnPSearchSettings", + "Id": 655, + "CommandName": "Get-PnPSearchSettings" }, { - "Id": 656, "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth", - "Command": "Get-PnPServiceCurrentHealth" + "Command": "Get-PnPServiceCurrentHealth", + "Id": 656, + "CommandName": "Get-PnPServiceCurrentHealth" }, { - "Id": 657, "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth", - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Id": 657, + "CommandName": "Get-PnPServiceCurrentHealth" }, { - "Id": 658, "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue", - "Command": "Get-PnPServiceHealthIssue" + "Command": "Get-PnPServiceHealthIssue", + "Id": 658, + "CommandName": "Get-PnPServiceHealthIssue" }, { - "Id": 659, "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue", - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Id": 659, + "CommandName": "Get-PnPServiceHealthIssue" }, { - "Id": 660, "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn", - "Command": "Get-PnPSharePointAddIn" + "Command": "Get-PnPSharePointAddIn", + "Id": 660, + "CommandName": "Get-PnPSharePointAddIn" }, { - "Id": 661, "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn", - "Command": "Get-PnPSharePointAddIn -IncludeSubsites" + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Id": 661, + "CommandName": "Get-PnPSharePointAddIn" }, { - "Id": 662, "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Command": "Get-PnPSharingForNonOwnersOfSite" + "Command": "Get-PnPSharingForNonOwnersOfSite", + "Id": 662, + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { - "Id": 663, "Rank": 1, - "CommandName": "Get-PnPSite", - "Command": "Get-PnPSite" + "Command": "Get-PnPSite", + "Id": 663, + "CommandName": "Get-PnPSite" }, { - "Id": 664, "Rank": 2, - "CommandName": "Get-PnPSite", - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Id": 664, + "CommandName": "Get-PnPSite" }, { - "Id": 665, "Rank": 1, - "CommandName": "Get-PnPSiteClosure", - "Command": "Get-PnPSiteClosure" + "Command": "Get-PnPSiteClosure", + "Id": 665, + "CommandName": "Get-PnPSiteClosure" }, { - "Id": 666, "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin", - "Command": "Get-PnPSiteCollectionAdmin" + "Command": "Get-PnPSiteCollectionAdmin", + "Id": 666, + "CommandName": "Get-PnPSiteCollectionAdmin" }, { - "Id": 667, "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Command": "Get-PnPSiteCollectionAppCatalog" + "Command": "Get-PnPSiteCollectionAppCatalog", + "Id": 667, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 668, "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Id": 668, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 669, "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Id": 669, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 670, "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore", - "Command": "Get-PnPSiteCollectionTermStore" + "Command": "Get-PnPSiteCollectionTermStore", + "Id": 670, + "CommandName": "Get-PnPSiteCollectionTermStore" }, { - "Id": 671, "Rank": 1, - "CommandName": "Get-PnPSiteDesign", - "Command": "Get-PnPSiteDesign" + "Command": "Get-PnPSiteDesign", + "Id": 671, + "CommandName": "Get-PnPSiteDesign" }, { - "Id": 672, "Rank": 2, - "CommandName": "Get-PnPSiteDesign", - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 672, + "CommandName": "Get-PnPSiteDesign" }, { - "Id": 673, "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights", - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 673, + "CommandName": "Get-PnPSiteDesignRights" }, { - "Id": 674, "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun", - "Command": "Get-PnPSiteDesignRun" + "Command": "Get-PnPSiteDesignRun", + "Id": 674, + "CommandName": "Get-PnPSiteDesignRun" }, { - "Id": 675, "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun", - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Id": 675, + "CommandName": "Get-PnPSiteDesignRun" }, { - "Id": 676, "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask", - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 676, + "CommandName": "Get-PnPSiteDesignTask" }, { - "Id": 677, "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask", - "Command": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteDesignTask", + "Id": 677, + "CommandName": "Get-PnPSiteDesignTask" }, { - "Id": 678, "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask", - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Id": 678, + "CommandName": "Get-PnPSiteDesignTask" }, { - "Id": 679, "Rank": 1, - "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteGroup", + "Id": 679, + "CommandName": "Get-PnPSiteGroup" }, { - "Id": 680, "Rank": 2, - "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 680, + "CommandName": "Get-PnPSiteGroup" }, { - "Id": 681, "Rank": 3, - "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Id": 681, + "CommandName": "Get-PnPSiteGroup" }, { - "Id": 682, "Rank": 4, - "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 682, + "CommandName": "Get-PnPSiteGroup" }, { - "Id": 683, "Rank": 1, - "CommandName": "Get-PnPSitePolicy", - "Command": "Get-PnPSitePolicy" + "Command": "Get-PnPSitePolicy", + "Id": 683, + "CommandName": "Get-PnPSitePolicy" }, { - "Id": 684, "Rank": 2, - "CommandName": "Get-PnPSitePolicy", - "Command": "Get-PnPSitePolicy -AllAvailable" + "Command": "Get-PnPSitePolicy -AllAvailable", + "Id": 684, + "CommandName": "Get-PnPSitePolicy" }, { - "Id": 685, "Rank": 3, - "CommandName": "Get-PnPSitePolicy", - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 685, + "CommandName": "Get-PnPSitePolicy" }, { - "Id": 686, "Rank": 1, - "CommandName": "Get-PnPSiteScript", - "Command": "Get-PnPSiteScript" + "Command": "Get-PnPSiteScript", + "Id": 686, + "CommandName": "Get-PnPSiteScript" }, { - "Id": 687, "Rank": 2, - "CommandName": "Get-PnPSiteScript", - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 687, + "CommandName": "Get-PnPSiteScript" }, { - "Id": 688, "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList", - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Id": 688, + "CommandName": "Get-PnPSiteScriptFromList" }, { - "Id": 689, "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList", - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "Id": 689, + "CommandName": "Get-PnPSiteScriptFromList" }, { - "Id": 690, "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList", - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Id": 690, + "CommandName": "Get-PnPSiteScriptFromList" }, { - "Id": 691, "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Id": 691, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 692, "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "Id": 692, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 693, "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "Id": 693, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 694, "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Id": 694, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 695, "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Id": 695, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 696, "Rank": 6, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Id": 696, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 697, "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteSearchQueryResults", + "Id": 697, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 698, "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Id": 698, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 699, "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Id": 699, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 700, "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Id": 700, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 701, "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Id": 701, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 702, "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -All" + "Command": "Get-PnPSiteSearchQueryResults -All", + "Id": 702, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 703, "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel", - "Command": "Get-PnPSiteSensitivityLabel" + "Command": "Get-PnPSiteSensitivityLabel", + "Id": 703, + "CommandName": "Get-PnPSiteSensitivityLabel" }, { - "Id": 704, "Rank": 1, - "CommandName": "Get-PnPSiteSetVersionPolicyProgress", - "Command": "Get-PnPSiteSetVersionPolicyProgress" + "Command": "Get-PnPSiteSetVersionPolicyProgress", + "Id": 704, + "CommandName": "Get-PnPSiteSetVersionPolicyProgress" }, { - "Id": 705, "Rank": 1, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp" + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Id": 705, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 706, "Rank": 2, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.xml" + "Command": "Get-PnPSiteTemplate -Out template.xml", + "Id": 706, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 707, "Rank": 3, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.md" + "Command": "Get-PnPSiteTemplate -Out template.md", + "Id": 707, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 708, "Rank": 4, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Id": 708, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 709, "Rank": 5, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Id": 709, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 710, "Rank": 6, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Id": 710, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 711, "Rank": 7, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Id": 711, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 712, "Rank": 8, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Id": 712, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 713, "Rank": 9, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Id": 713, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 714, "Rank": 10, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Id": 714, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 715, "Rank": 11, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Id": 715, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 716, "Rank": 12, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "Id": 716, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 717, "Rank": 13, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", + "Id": 717, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 718, "Rank": 14, - "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "Id": 718, + "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 719, "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations", - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 719, + "CommandName": "Get-PnPSiteUserInvitations" }, { - "Id": 720, "Rank": 1, - "CommandName": "Get-PnPSiteVersionPolicy", - "Command": "Get-PnPSiteVersionPolicy" + "Command": "Get-PnPSiteVersionPolicy", + "Id": 720, + "CommandName": "Get-PnPSiteVersionPolicy" }, { - "Id": 721, "Rank": 1, - "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity" + "Command": "Get-PnPStorageEntity", + "Id": 721, + "CommandName": "Get-PnPStorageEntity" }, { - "Id": 722, "Rank": 2, - "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity -Key MyKey" + "Command": "Get-PnPStorageEntity -Key MyKey", + "Id": 722, + "CommandName": "Get-PnPStorageEntity" }, { - "Id": 723, "Rank": 3, - "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity -Scope Site" + "Command": "Get-PnPStorageEntity -Scope Site", + "Id": 723, + "CommandName": "Get-PnPStorageEntity" }, { - "Id": 724, "Rank": 4, - "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 724, + "CommandName": "Get-PnPStorageEntity" }, { - "Id": 725, "Rank": 1, - "CommandName": "Get-PnPStoredCredential", - "Command": "Get-PnPStoredCredential -Name O365" + "Command": "Get-PnPStoredCredential -Name O365", + "Id": 725, + "CommandName": "Get-PnPStoredCredential" }, { - "Id": 726, "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 726, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { - "Id": 727, "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 727, + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { - "Id": 728, "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Id": 728, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { - "Id": 729, "Rank": 1, - "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb" + "Command": "Get-PnPSubWeb", + "Id": 729, + "CommandName": "Get-PnPSubWeb" }, { - "Id": 730, "Rank": 2, - "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Recurse" + "Command": "Get-PnPSubWeb -Recurse", + "Id": 730, + "CommandName": "Get-PnPSubWeb" }, { - "Id": 731, "Rank": 3, - "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Id": 731, + "CommandName": "Get-PnPSubWeb" }, { - "Id": 732, "Rank": 4, - "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Id": 732, + "CommandName": "Get-PnPSubWeb" }, { - "Id": 733, "Rank": 5, - "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Id": 733, + "CommandName": "Get-PnPSubWeb" }, { - "Id": 734, "Rank": 1, - "CommandName": "Get-PnPSyntexModel", - "Command": "Get-PnPSyntexModel" + "Command": "Get-PnPSyntexModel", + "Id": 734, + "CommandName": "Get-PnPSyntexModel" }, { - "Id": 735, "Rank": 2, - "CommandName": "Get-PnPSyntexModel", - "Command": "Get-PnPSyntexModel -Identity 1" + "Command": "Get-PnPSyntexModel -Identity 1", + "Id": 735, + "CommandName": "Get-PnPSyntexModel" }, { - "Id": 736, "Rank": 3, - "CommandName": "Get-PnPSyntexModel", - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Id": 736, + "CommandName": "Get-PnPSyntexModel" }, { - "Id": 737, "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication", - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Id": 737, + "CommandName": "Get-PnPSyntexModelPublication" }, { - "Id": 738, "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem", - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Id": 738, + "CommandName": "Get-PnPTaxonomyItem" }, { - "Id": 739, "Rank": 1, - "CommandName": "Get-PnPTeamsApp", - "Command": "Get-PnPTeamsApp" + "Command": "Get-PnPTeamsApp", + "Id": 739, + "CommandName": "Get-PnPTeamsApp" }, { - "Id": 740, "Rank": 2, - "CommandName": "Get-PnPTeamsApp", - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Id": 740, + "CommandName": "Get-PnPTeamsApp" }, { - "Id": 741, "Rank": 3, - "CommandName": "Get-PnPTeamsApp", - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Id": 741, + "CommandName": "Get-PnPTeamsApp" }, { - "Id": 742, "Rank": 1, - "CommandName": "Get-PnPTeamsChannel", - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Id": 742, + "CommandName": "Get-PnPTeamsChannel" }, { - "Id": 743, "Rank": 2, - "CommandName": "Get-PnPTeamsChannel", - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "Id": 743, + "CommandName": "Get-PnPTeamsChannel" }, { - "Id": 744, "Rank": 3, - "CommandName": "Get-PnPTeamsChannel", - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 744, + "CommandName": "Get-PnPTeamsChannel" }, { - "Id": 745, "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "Id": 745, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "Id": 746, "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 746, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "Id": 747, "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage", - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Id": 747, + "CommandName": "Get-PnPTeamsChannelMessage" }, { - "Id": 748, "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage", - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Id": 748, + "CommandName": "Get-PnPTeamsChannelMessage" }, { - "Id": 749, "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "Id": 749, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "Id": 750, "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Id": 750, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "Id": 751, "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Id": 751, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "Id": 752, "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "Id": 752, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "Id": 753, "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "Id": 753, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "Id": 754, "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 754, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "Id": 755, "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Id": 755, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "Id": 756, "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Id": 756, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "Id": 757, "Rank": 1, - "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "Id": 757, + "CommandName": "Get-PnPTeamsTab" }, { - "Id": 758, "Rank": 2, - "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "Id": 758, + "CommandName": "Get-PnPTeamsTab" }, { - "Id": 759, "Rank": 3, - "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", + "Id": 759, + "CommandName": "Get-PnPTeamsTab" }, { - "Id": 760, "Rank": 4, - "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Id": 760, + "CommandName": "Get-PnPTeamsTab" }, { - "Id": 761, "Rank": 5, - "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Id": 761, + "CommandName": "Get-PnPTeamsTab" }, { - "Id": 762, "Rank": 1, - "CommandName": "Get-PnPTeamsTag", - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 762, + "CommandName": "Get-PnPTeamsTag" }, { - "Id": 763, "Rank": 2, - "CommandName": "Get-PnPTeamsTag", - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 763, + "CommandName": "Get-PnPTeamsTag" }, { - "Id": 764, "Rank": 1, - "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTeam", + "Id": 764, + "CommandName": "Get-PnPTeamsTeam" }, { - "Id": 765, "Rank": 2, - "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Id": 765, + "CommandName": "Get-PnPTeamsTeam" }, { - "Id": 766, "Rank": 3, - "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Id": 766, + "CommandName": "Get-PnPTeamsTeam" }, { - "Id": 767, "Rank": 4, - "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Id": 767, + "CommandName": "Get-PnPTeamsTeam" }, { - "Id": 768, "Rank": 5, - "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Id": 768, + "CommandName": "Get-PnPTeamsTeam" }, { - "Id": 769, "Rank": 1, - "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam" + "Command": "Get-PnPTeamsUser -Team MyTeam", + "Id": 769, + "CommandName": "Get-PnPTeamsUser" }, { - "Id": 770, "Rank": 2, - "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Id": 770, + "CommandName": "Get-PnPTeamsUser" }, { - "Id": 771, "Rank": 3, - "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Id": 771, + "CommandName": "Get-PnPTeamsUser" }, { - "Id": 772, "Rank": 4, - "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Id": 772, + "CommandName": "Get-PnPTeamsUser" }, { - "Id": 773, "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Command": "Get-PnPTemporarilyDisableAppBar" + "Command": "Get-PnPTemporarilyDisableAppBar", + "Id": 773, + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { - "Id": 774, "Rank": 1, - "CommandName": "Get-PnPTenant", - "Command": "Get-PnPTenant" + "Command": "Get-PnPTenant", + "Id": 774, + "CommandName": "Get-PnPTenant" }, { - "Id": 775, "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Command": "Get-PnPTenantAppCatalogUrl" + "Command": "Get-PnPTenantAppCatalogUrl", + "Id": 775, + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { - "Id": 776, "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled", - "Command": "Get-PnPTenantCdnEnabled -CdnType Public" + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Id": 776, + "CommandName": "Get-PnPTenantCdnEnabled" }, { - "Id": 777, "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin", - "Command": "Get-PnPTenantCdnOrigin -CdnType Public" + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Id": 777, + "CommandName": "Get-PnPTenantCdnOrigin" }, { - "Id": 778, "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies", - "Command": "Get-PnPTenantCdnPolicies -CdnType Public" + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Id": 778, + "CommandName": "Get-PnPTenantCdnPolicies" }, { - "Id": 779, "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTenantDeletedSite", + "Id": 779, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "Id": 780, "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite -Detailed" + "Command": "Get-PnPTenantDeletedSite -Detailed", + "Id": 780, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "Id": 781, "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 781, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "Id": 782, "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Id": 782, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "Id": 783, "Rank": 5, - "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Id": 783, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "Id": 784, "Rank": 1, - "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId" + "Command": "Get-PnPTenantId", + "Id": 784, + "CommandName": "Get-PnPTenantId" }, { - "Id": 785, "Rank": 2, - "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId contoso" + "Command": "Get-PnPTenantId contoso", + "Id": 785, + "CommandName": "Get-PnPTenantId" }, { - "Id": 786, "Rank": 3, - "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Id": 786, + "CommandName": "Get-PnPTenantId" }, { - "Id": 787, "Rank": 4, - "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Id": 787, + "CommandName": "Get-PnPTenantId" }, { - "Id": 788, "Rank": 1, - "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Id": 788, + "CommandName": "Get-PnPTenantInfo" }, { - "Id": 789, "Rank": 2, - "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Id": 789, + "CommandName": "Get-PnPTenantInfo" }, { - "Id": 790, "Rank": 3, - "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo" + "Command": "Get-PnPTenantInfo", + "Id": 790, + "CommandName": "Get-PnPTenantInfo" }, { - "Id": 791, "Rank": 4, - "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo -CurrentTenant" + "Command": "Get-PnPTenantInfo -CurrentTenant", + "Id": 791, + "CommandName": "Get-PnPTenantInfo" }, { - "Id": 792, "Rank": 1, - "CommandName": "Get-PnPTenantInstance", - "Command": "Get-PnPTenantInstance" + "Command": "Get-PnPTenantInstance", + "Id": 792, + "CommandName": "Get-PnPTenantInstance" }, { - "Id": 793, "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem", - "Command": "Get-PnPTenantRecycleBinItem" + "Command": "Get-PnPTenantRecycleBinItem", + "Id": 793, + "CommandName": "Get-PnPTenantRecycleBinItem" }, { - "Id": 794, "Rank": 1, - "CommandName": "Get-PnPTenantSequence", - "Command": "Get-PnPTenantSequence -Template $myTemplateObject" + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Id": 794, + "CommandName": "Get-PnPTenantSequence" }, { - "Id": 795, "Rank": 2, - "CommandName": "Get-PnPTenantSequence", - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Id": 795, + "CommandName": "Get-PnPTenantSequence" }, { - "Id": 796, "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite", - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Id": 796, + "CommandName": "Get-PnPTenantSequenceSite" }, { - "Id": 797, "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite", - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Id": 797, + "CommandName": "Get-PnPTenantSequenceSite" }, { - "Id": 798, "Rank": 1, - "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite", + "Id": 798, + "CommandName": "Get-PnPTenantSite" }, { - "Id": 799, "Rank": 2, - "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Detailed" + "Command": "Get-PnPTenantSite -Detailed", + "Id": 799, + "CommandName": "Get-PnPTenantSite" }, { - "Id": 800, "Rank": 3, - "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -IncludeOneDriveSites" + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Id": 800, + "CommandName": "Get-PnPTenantSite" }, { - "Id": 801, "Rank": 4, - "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Id": 801, + "CommandName": "Get-PnPTenantSite" }, { - "Id": 802, "Rank": 5, - "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Id": 802, + "CommandName": "Get-PnPTenantSite" }, { - "Id": 803, "Rank": 6, - "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Id": 803, + "CommandName": "Get-PnPTenantSite" }, { - "Id": 804, "Rank": 7, - "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Id": 804, + "CommandName": "Get-PnPTenantSite" }, { - "Id": 805, "Rank": 8, - "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Id": 805, + "CommandName": "Get-PnPTenantSite" }, { - "Id": 806, "Rank": 9, - "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -GroupIdDefined $true" + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Id": 806, + "CommandName": "Get-PnPTenantSite" }, { - "Id": 807, "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Command": "Get-PnPTenantSyncClientRestriction" + "Command": "Get-PnPTenantSyncClientRestriction", + "Id": 807, + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { - "Id": 808, "Rank": 1, - "CommandName": "Get-PnPTenantTemplate", - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Id": 808, + "CommandName": "Get-PnPTenantTemplate" }, { - "Id": 809, "Rank": 2, - "CommandName": "Get-PnPTenantTemplate", - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "Id": 809, + "CommandName": "Get-PnPTenantTemplate" }, { - "Id": 810, "Rank": 3, - "CommandName": "Get-PnPTenantTemplate", - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Id": 810, + "CommandName": "Get-PnPTenantTemplate" }, { - "Id": 811, "Rank": 1, - "CommandName": "Get-PnPTenantTheme", - "Command": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantTheme", + "Id": 811, + "CommandName": "Get-PnPTenantTheme" }, { - "Id": 812, "Rank": 2, - "CommandName": "Get-PnPTenantTheme", - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 812, + "CommandName": "Get-PnPTenantTheme" }, { - "Id": 813, "Rank": 3, - "CommandName": "Get-PnPTenantTheme", - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Id": 813, + "CommandName": "Get-PnPTenantTheme" }, { - "Id": 814, "Rank": 1, - "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 814, + "CommandName": "Get-PnPTerm" }, { - "Id": 815, "Rank": 2, - "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 815, + "CommandName": "Get-PnPTerm" }, { - "Id": 816, "Rank": 3, - "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 816, + "CommandName": "Get-PnPTerm" }, { - "Id": 817, "Rank": 4, - "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "Id": 817, + "CommandName": "Get-PnPTerm" }, { - "Id": 818, "Rank": 5, - "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Id": 818, + "CommandName": "Get-PnPTerm" }, { - "Id": 819, "Rank": 1, - "CommandName": "Get-PnPTermGroup", - "Command": "Get-PnPTermGroup" + "Command": "Get-PnPTermGroup", + "Id": 819, + "CommandName": "Get-PnPTermGroup" }, { - "Id": 820, "Rank": 2, - "CommandName": "Get-PnPTermGroup", - "Command": "Get-PnPTermGroup -Identity \"Departments\"" + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Id": 820, + "CommandName": "Get-PnPTermGroup" }, { - "Id": 821, "Rank": 3, - "CommandName": "Get-PnPTermGroup", - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Id": 821, + "CommandName": "Get-PnPTermGroup" }, { - "Id": 822, "Rank": 1, - "CommandName": "Get-PnPTermLabel", - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Id": 822, + "CommandName": "Get-PnPTermLabel" }, { - "Id": 823, "Rank": 2, - "CommandName": "Get-PnPTermLabel", - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Id": 823, + "CommandName": "Get-PnPTermLabel" }, { - "Id": 824, "Rank": 3, - "CommandName": "Get-PnPTermLabel", - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 824, + "CommandName": "Get-PnPTermLabel" }, { - "Id": 825, "Rank": 1, - "CommandName": "Get-PnPTermSet", - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Id": 825, + "CommandName": "Get-PnPTermSet" }, { - "Id": 826, "Rank": 2, - "CommandName": "Get-PnPTermSet", - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Id": 826, + "CommandName": "Get-PnPTermSet" }, { - "Id": 827, "Rank": 3, - "CommandName": "Get-PnPTermSet", - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Id": 827, + "CommandName": "Get-PnPTermSet" }, { - "Id": 828, "Rank": 1, - "CommandName": "Get-PnPTheme", - "Command": "Get-PnPTheme" + "Command": "Get-PnPTheme", + "Id": 828, + "CommandName": "Get-PnPTheme" }, { - "Id": 829, "Rank": 2, - "CommandName": "Get-PnPTheme", - "Command": "Get-PnPTheme -DetectCurrentComposedLook" + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Id": 829, + "CommandName": "Get-PnPTheme" }, { - "Id": 830, "Rank": 1, - "CommandName": "Get-PnPTimeZoneId", - "Command": "Get-PnPTimeZoneId" + "Command": "Get-PnPTimeZoneId", + "Id": 830, + "CommandName": "Get-PnPTimeZoneId" }, { - "Id": 831, "Rank": 2, - "CommandName": "Get-PnPTimeZoneId", - "Command": "Get-PnPTimeZoneId -Match Stockholm" + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Id": 831, + "CommandName": "Get-PnPTimeZoneId" }, { - "Id": 832, "Rank": 1, - "CommandName": "Get-PnPUnfurlLink", - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "Id": 832, + "CommandName": "Get-PnPUnfurlLink" }, { - "Id": 833, "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog", - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Id": 833, + "CommandName": "Get-PnPUnifiedAuditLog" }, { - "Id": 834, "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPUPABulkImportStatus", + "Id": 834, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Id": 835, "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Id": 835, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Id": 836, "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus -JobId <guid>" + "Command": "Get-PnPUPABulkImportStatus -JobId <guid>", + "Id": 836, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Id": 837, "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails" + "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails", + "Id": 837, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Id": 838, "Rank": 1, - "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser" + "Command": "Get-PnPUser", + "Id": 838, + "CommandName": "Get-PnPUser" }, { - "Id": 839, "Rank": 2, - "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -Identity 23" + "Command": "Get-PnPUser -Identity 23", + "Id": 839, + "CommandName": "Get-PnPUser" }, { - "Id": 840, "Rank": 3, - "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Id": 840, + "CommandName": "Get-PnPUser" }, { - "Id": 841, "Rank": 4, - "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Id": 841, + "CommandName": "Get-PnPUser" }, { - "Id": 842, "Rank": 5, - "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -WithRightsAssigned" + "Command": "Get-PnPUser -WithRightsAssigned", + "Id": 842, + "CommandName": "Get-PnPUser" }, { - "Id": 843, "Rank": 6, - "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Id": 843, + "CommandName": "Get-PnPUser" }, { - "Id": 844, "Rank": 7, - "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -WithRightsAssignedDetailed" + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Id": 844, + "CommandName": "Get-PnPUser" }, { - "Id": 845, "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota", - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Id": 845, + "CommandName": "Get-PnPUserOneDriveQuota" }, { - "Id": 846, "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty", - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Id": 846, + "CommandName": "Get-PnPUserProfileProperty" }, { - "Id": 847, "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty", - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Id": 847, + "CommandName": "Get-PnPUserProfileProperty" }, { - "Id": 848, "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty", - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Id": 848, + "CommandName": "Get-PnPUserProfileProperty" }, { - "Id": 849, "Rank": 1, - "CommandName": "Get-PnPView", - "Command": "Get-PnPView -List \"Demo List\"" + "Command": "Get-PnPView -List \"Demo List\"", + "Id": 849, + "CommandName": "Get-PnPView" }, { - "Id": 850, "Rank": 2, - "CommandName": "Get-PnPView", - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Id": 850, + "CommandName": "Get-PnPView" }, { - "Id": 851, "Rank": 3, - "CommandName": "Get-PnPView", - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Id": 851, + "CommandName": "Get-PnPView" }, { - "Id": 852, "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Command": "Get-PnPVivaConnectionsDashboardACE" + "Command": "Get-PnPVivaConnectionsDashboardACE", + "Id": 852, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "Id": 853, "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 853, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "Id": 854, "Rank": 1, - "CommandName": "Get-PnPWeb", - "Command": "Get-PnPWeb" + "Command": "Get-PnPWeb", + "Id": 854, + "CommandName": "Get-PnPWeb" }, { - "Id": 855, "Rank": 1, - "CommandName": "Get-PnPWebHeader", - "Command": "Get-PnPWebHeader" + "Command": "Get-PnPWebHeader", + "Id": 855, + "CommandName": "Get-PnPWebHeader" }, { - "Id": 856, "Rank": 1, - "CommandName": "Get-PnPWebhookSubscription", - "Command": "Get-PnPWebhookSubscription -List MyList" + "Command": "Get-PnPWebhookSubscription -List MyList", + "Id": 856, + "CommandName": "Get-PnPWebhookSubscription" }, { - "Id": 857, "Rank": 1, - "CommandName": "Get-PnPWebPart", - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "Id": 857, + "CommandName": "Get-PnPWebPart" }, { - "Id": 858, "Rank": 2, - "CommandName": "Get-PnPWebPart", - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 858, + "CommandName": "Get-PnPWebPart" }, { - "Id": 859, "Rank": 1, - "CommandName": "Get-PnPWebPartProperty", - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "Id": 859, + "CommandName": "Get-PnPWebPartProperty" }, { - "Id": 860, "Rank": 2, - "CommandName": "Get-PnPWebPartProperty", - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "Id": 860, + "CommandName": "Get-PnPWebPartProperty" }, { - "Id": 861, "Rank": 1, - "CommandName": "Get-PnPWebPartXml", - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 861, + "CommandName": "Get-PnPWebPartXml" }, { - "Id": 862, "Rank": 1, - "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates" + "Command": "Get-PnPWebTemplates", + "Id": 862, + "CommandName": "Get-PnPWebTemplates" }, { - "Id": 863, "Rank": 2, - "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates -LCID 1033" + "Command": "Get-PnPWebTemplates -LCID 1033", + "Id": 863, + "CommandName": "Get-PnPWebTemplates" }, { - "Id": 864, "Rank": 3, - "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Id": 864, + "CommandName": "Get-PnPWebTemplates" }, { - "Id": 865, "Rank": 1, - "CommandName": "Get-PnPWikiPageContent", - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Id": 865, + "CommandName": "Get-PnPWikiPageContent" }, { - "Id": 866, "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "Id": 866, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "Id": 867, "Rank": 2, - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects" + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", + "Id": 867, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "Id": 868, "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights", - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 868, + "CommandName": "Grant-PnPHubSiteRights" }, { - "Id": 869, "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights", - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 869, + "CommandName": "Grant-PnPSiteDesignRights" }, { - "Id": 870, "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 870, + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { - "Id": 871, "Rank": 1, - "CommandName": "Import-PnPTaxonomy", - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Id": 871, + "CommandName": "Import-PnPTaxonomy" }, { - "Id": 872, "Rank": 2, - "CommandName": "Import-PnPTaxonomy", - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Id": 872, + "CommandName": "Import-PnPTaxonomy" }, { - "Id": 873, "Rank": 3, - "CommandName": "Import-PnPTaxonomy", - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Id": 873, + "CommandName": "Import-PnPTaxonomy" }, { - "Id": 874, "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml", - "Command": "Import-PnPTermGroupFromXml -Xml $xml" + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Id": 874, + "CommandName": "Import-PnPTermGroupFromXml" }, { - "Id": 875, "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml", - "Command": "Import-PnPTermGroupFromXml -Path input.xml" + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Id": 875, + "CommandName": "Import-PnPTermGroupFromXml" }, { - "Id": 876, "Rank": 1, - "CommandName": "Import-PnPTermSet", - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "Id": 876, + "CommandName": "Import-PnPTermSet" }, { - "Id": 877, "Rank": 2, - "CommandName": "Import-PnPTermSet", - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", + "Id": 877, + "CommandName": "Import-PnPTermSet" }, { - "Id": 878, "Rank": 3, - "CommandName": "Import-PnPTermSet", - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", + "Id": 878, + "CommandName": "Import-PnPTermSet" }, { - "Id": 879, "Rank": 1, - "CommandName": "Install-PnPApp", - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 879, + "CommandName": "Install-PnPApp" }, { - "Id": 880, "Rank": 2, - "CommandName": "Install-PnPApp", - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 880, + "CommandName": "Install-PnPApp" }, { - "Id": 881, "Rank": 1, - "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "Id": 881, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 882, "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Id": 882, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 883, "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "Id": 883, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 884, "Rank": 4, - "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "Id": 884, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 885, "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "Id": 885, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 886, "Rank": 6, - "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", + "Id": 886, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 887, "Rank": 7, - "CommandName": "Invoke-PnPGraphMethod", - "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-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"", + "Id": 887, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 888, "Rank": 1, - "CommandName": "Invoke-PnPListDesign", - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 888, + "CommandName": "Invoke-PnPListDesign" }, { - "Id": 889, "Rank": 2, - "CommandName": "Invoke-PnPListDesign", - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 889, + "CommandName": "Invoke-PnPListDesign" }, { - "Id": 890, "Rank": 1, - "CommandName": "Invoke-PnPQuery", - "Command": "Invoke-PnPQuery -RetryCount 5" + "Command": "Invoke-PnPQuery -RetryCount 5", + "Id": 890, + "CommandName": "Invoke-PnPQuery" }, { - "Id": 891, "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign", - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 891, + "CommandName": "Invoke-PnPSiteDesign" }, { - "Id": 892, "Rank": 2, - "CommandName": "Invoke-PnPSiteDesign", - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 892, + "CommandName": "Invoke-PnPSiteDesign" }, { - "Id": 893, "Rank": 1, - "CommandName": "Invoke-PnPSiteScript", - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "Id": 893, + "CommandName": "Invoke-PnPSiteScript" }, { - "Id": 894, "Rank": 1, - "CommandName": "Invoke-PnPSiteSwap", - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "Id": 894, + "CommandName": "Invoke-PnPSiteSwap" }, { - "Id": 895, "Rank": 2, - "CommandName": "Invoke-PnPSiteSwap", - "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-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "Id": 895, + "CommandName": "Invoke-PnPSiteSwap" }, { - "Id": 896, "Rank": 3, - "CommandName": "Invoke-PnPSiteSwap", - "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-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", + "Id": 896, + "CommandName": "Invoke-PnPSiteSwap" }, { - "Id": 897, "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml" + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Id": 897, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 898, "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "Id": 898, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 899, "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 899, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 900, "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Id": 900, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 901, "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.pnp" + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Id": 901, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 902, "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Id": 902, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 903, "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Id": 903, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 904, "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Id": 904, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 905, "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod", - "Command": "Invoke-PnPSPRestMethod -Url /_api/web" + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Id": 905, + "CommandName": "Invoke-PnPSPRestMethod" }, { - "Id": 906, "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate", - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Id": 906, + "CommandName": "Invoke-PnPTenantTemplate" }, { - "Id": 907, "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate", - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Id": 907, + "CommandName": "Invoke-PnPTenantTemplate" }, { - "Id": 908, "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate", - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 908, + "CommandName": "Invoke-PnPTenantTemplate" }, { - "Id": 909, "Rank": 1, - "CommandName": "Invoke-PnPWebAction", - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Id": 909, + "CommandName": "Invoke-PnPWebAction" }, { - "Id": 910, "Rank": 2, - "CommandName": "Invoke-PnPWebAction", - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Id": 910, + "CommandName": "Invoke-PnPWebAction" }, { - "Id": 911, "Rank": 1, - "CommandName": "Measure-PnPList", - "Command": "Measure-PnPList \"Documents\"" + "Command": "Measure-PnPList \"Documents\"", + "Id": 911, + "CommandName": "Measure-PnPList" }, { - "Id": 912, "Rank": 2, - "CommandName": "Measure-PnPList", - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Id": 912, + "CommandName": "Measure-PnPList" }, { - "Id": 913, "Rank": 1, - "CommandName": "Measure-PnPWeb", - "Command": "Measure-PnPWeb" + "Command": "Measure-PnPWeb", + "Id": 913, + "CommandName": "Measure-PnPWeb" }, { - "Id": 914, "Rank": 2, - "CommandName": "Measure-PnPWeb", - "Command": "Measure-PnPWeb $web -Recursive" + "Command": "Measure-PnPWeb $web -Recursive", + "Id": 914, + "CommandName": "Measure-PnPWeb" }, { - "Id": 915, "Rank": 1, - "CommandName": "Merge-PnPTerm", - "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b" + "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", + "Id": 915, + "CommandName": "Merge-PnPTerm" }, { - "Id": 916, "Rank": 1, - "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "Id": 916, + "CommandName": "Move-PnPFile" }, { - "Id": 917, "Rank": 2, - "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "Id": 917, + "CommandName": "Move-PnPFile" }, { - "Id": 918, "Rank": 3, - "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 918, + "CommandName": "Move-PnPFile" }, { - "Id": 919, "Rank": 4, - "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 919, + "CommandName": "Move-PnPFile" }, { - "Id": 920, "Rank": 1, - "CommandName": "Move-PnPFolder", - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Id": 920, + "CommandName": "Move-PnPFolder" }, { - "Id": 921, "Rank": 2, - "CommandName": "Move-PnPFolder", - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Id": 921, + "CommandName": "Move-PnPFolder" }, { - "Id": 922, "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin", - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Id": 922, + "CommandName": "Move-PnPListItemToRecycleBin" }, { - "Id": 923, "Rank": 1, - "CommandName": "Move-PnPPageComponent", - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "Id": 923, + "CommandName": "Move-PnPPageComponent" }, { - "Id": 924, "Rank": 2, - "CommandName": "Move-PnPPageComponent", - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "Id": 924, + "CommandName": "Move-PnPPageComponent" }, { - "Id": 925, "Rank": 3, - "CommandName": "Move-PnPPageComponent", - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "Id": 925, + "CommandName": "Move-PnPPageComponent" }, { - "Id": 926, "Rank": 4, - "CommandName": "Move-PnPPageComponent", - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Id": 926, + "CommandName": "Move-PnPPageComponent" }, { - "Id": 927, "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem", - "Command": "Move-PnPRecycleBinItem" + "Command": "Move-PnPRecycleBinItem", + "Id": 927, + "CommandName": "Move-PnpRecycleBinItem" }, { - "Id": 928, "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem", - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Id": 928, + "CommandName": "Move-PnpRecycleBinItem" }, { - "Id": 929, "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem", - "Command": "Move-PnPRecycleBinItem -Force" + "Command": "Move-PnPRecycleBinItem -Force", + "Id": 929, + "CommandName": "Move-PnpRecycleBinItem" }, { - "Id": 930, "Rank": 1, - "CommandName": "Move-PnPTerm", - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", + "Id": 930, + "CommandName": "Move-PnPTerm" }, { - "Id": 931, "Rank": 2, - "CommandName": "Move-PnPTerm", - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "Id": 931, + "CommandName": "Move-PnPTerm" }, { - "Id": 932, "Rank": 3, - "CommandName": "Move-PnPTerm", - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "Id": 932, + "CommandName": "Move-PnPTerm" }, { - "Id": 933, "Rank": 1, - "CommandName": "Move-PnPTermSet", - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", + "Id": 933, + "CommandName": "Move-PnPTermSet" }, { - "Id": 934, "Rank": 2, - "CommandName": "Move-PnPTermSet", - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Id": 934, + "CommandName": "Move-PnPTermSet" }, { - "Id": 935, "Rank": 1, - "CommandName": "New-PnPAzureADGroup", - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 935, + "CommandName": "New-PnPAzureADGroup" }, { - "Id": 936, "Rank": 2, - "CommandName": "New-PnPAzureADGroup", - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "Id": 936, + "CommandName": "New-PnPAzureADGroup" }, { - "Id": 937, "Rank": 3, - "CommandName": "New-PnPAzureADGroup", - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Id": 937, + "CommandName": "New-PnPAzureADGroup" }, { - "Id": 938, "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Id": 938, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Id": 939, "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "Id": 939, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Id": 940, "Rank": 3, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "Id": 940, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Id": 941, "Rank": 1, - "CommandName": "New-PnPAzureCertificate", - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Id": 941, + "CommandName": "New-PnPAzureCertificate" }, { - "Id": 942, "Rank": 2, - "CommandName": "New-PnPAzureCertificate", - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "Id": 942, + "CommandName": "New-PnPAzureCertificate" }, { - "Id": 943, "Rank": 3, - "CommandName": "New-PnPAzureCertificate", - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Id": 943, + "CommandName": "New-PnPAzureCertificate" }, { - "Id": 944, "Rank": 4, - "CommandName": "New-PnPAzureCertificate", - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", + "Id": 944, + "CommandName": "New-PnPAzureCertificate" }, { - "Id": 945, "Rank": 1, - "CommandName": "New-PnPGraphSubscription", - "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-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 945, + "CommandName": "New-PnPGraphSubscription" }, { - "Id": 946, "Rank": 2, - "CommandName": "New-PnPGraphSubscription", - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 946, + "CommandName": "New-PnPGraphSubscription" }, { - "Id": 947, "Rank": 1, - "CommandName": "New-PnPGroup", - "Command": "New-PnPGroup -Title \"My Site Users\"" + "Command": "New-PnPGroup -Title \"My Site Users\"", + "Id": 947, + "CommandName": "New-PnPGroup" }, { - "Id": 948, "Rank": 1, - "CommandName": "New-PnPList", - "Command": "New-PnPList -Title Announcements -Template Announcements" + "Command": "New-PnPList -Title Announcements -Template Announcements", + "Id": 948, + "CommandName": "New-PnPList" }, { - "Id": 949, "Rank": 2, - "CommandName": "New-PnPList", - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Id": 949, + "CommandName": "New-PnPList" }, { - "Id": 950, "Rank": 3, - "CommandName": "New-PnPList", - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Id": 950, + "CommandName": "New-PnPList" }, { - "Id": 951, "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 951, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 952, "Rank": 2, - "CommandName": "New-PnPMicrosoft365Group", - "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 -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "Id": 952, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 953, "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "Id": 953, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 954, "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "Id": 954, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 955, "Rank": 5, - "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 955, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 956, "Rank": 6, - "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 956, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 957, "Rank": 7, - "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "Id": 957, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 958, "Rank": 1, - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", + "Id": 958, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "Id": 959, "Rank": 2, - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "Id": 959, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "Id": 960, "Rank": 1, - "CommandName": "New-PnPPersonalSite", - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Id": 960, + "CommandName": "New-PnPPersonalSite" }, { - "Id": 961, "Rank": 1, - "CommandName": "New-PnPPlannerPlan", - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Id": 961, + "CommandName": "New-PnPPlannerPlan" }, { - "Id": 962, "Rank": 1, - "CommandName": "New-PnPSdnProvider", - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Id": 962, + "CommandName": "New-PnPSdnProvider" }, { - "Id": 963, "Rank": 1, - "CommandName": "New-PnPSite", - "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", + "Id": 963, + "CommandName": "New-PnPSite" }, { - "Id": 964, "Rank": 2, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "Id": 964, + "CommandName": "New-PnPSite" }, { - "Id": 965, "Rank": 3, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 965, + "CommandName": "New-PnPSite" }, { - "Id": 966, "Rank": 4, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 966, + "CommandName": "New-PnPSite" }, { - "Id": 967, "Rank": 5, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 967, + "CommandName": "New-PnPSite" }, { - "Id": 968, "Rank": 6, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Id": 968, + "CommandName": "New-PnPSite" }, { - "Id": 969, "Rank": 7, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Id": 969, + "CommandName": "New-PnPSite" }, { - "Id": 970, "Rank": 8, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "Id": 970, + "CommandName": "New-PnPSite" }, { - "Id": 971, "Rank": 9, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "Id": 971, + "CommandName": "New-PnPSite" }, { - "Id": 972, "Rank": 10, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "Id": 972, + "CommandName": "New-PnPSite" }, { - "Id": 973, "Rank": 11, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Id": 973, + "CommandName": "New-PnPSite" }, { - "Id": 974, "Rank": 12, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 974, + "CommandName": "New-PnPSite" }, { - "Id": 975, "Rank": 13, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 975, + "CommandName": "New-PnPSite" }, { - "Id": 976, "Rank": 14, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 976, + "CommandName": "New-PnPSite" }, { - "Id": 977, "Rank": 15, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -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 -Lcid 1040", + "Id": 977, + "CommandName": "New-PnPSite" }, { - "Id": 978, "Rank": 16, - "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Id": 978, + "CommandName": "New-PnPSite" }, { - "Id": 979, "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore", - "Command": "New-PnPSiteCollectionTermStore" + "Command": "New-PnPSiteCollectionTermStore", + "Id": 979, + "CommandName": "New-PnPSiteCollectionTermStore" }, { - "Id": 980, "Rank": 1, - "CommandName": "New-PnPSiteGroup", - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "Id": 980, + "CommandName": "New-PnPSiteGroup" }, { - "Id": 981, "Rank": 2, - "CommandName": "New-PnPSiteGroup", - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Id": 981, + "CommandName": "New-PnPSiteGroup" }, { - "Id": 982, "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Id": 982, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 983, "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Id": 983, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 984, "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "Id": 984, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 985, "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "Id": 985, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 986, "Rank": 5, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "Id": 986, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 987, "Rank": 6, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 987, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 988, "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Id": 988, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 989, "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Id": 989, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 990, "Rank": 1, - "CommandName": "New-PnPTeamsApp", - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Id": 990, + "CommandName": "New-PnPTeamsApp" }, { - "Id": 991, "Rank": 1, - "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Id": 991, + "CommandName": "New-PnPTeamsTeam" }, { - "Id": 992, "Rank": 2, - "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -GroupId $groupId" + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Id": 992, + "CommandName": "New-PnPTeamsTeam" }, { - "Id": 993, "Rank": 3, - "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "Id": 993, + "CommandName": "New-PnPTeamsTeam" }, { - "Id": 994, "Rank": 4, - "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 994, + "CommandName": "New-PnPTeamsTeam" }, { - "Id": 995, "Rank": 5, - "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", + "Id": 995, + "CommandName": "New-PnPTeamsTeam" }, { - "Id": 996, "Rank": 6, - "CommandName": "New-PnPTeamsTeam", - "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-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": 996, + "CommandName": "New-PnPTeamsTeam" }, { - "Id": 997, "Rank": 1, - "CommandName": "New-PnPTenantSite", - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 997, + "CommandName": "New-PnPTenantSite" }, { - "Id": 998, "Rank": 2, - "CommandName": "New-PnPTenantSite", - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 998, + "CommandName": "New-PnPTenantSite" }, { - "Id": 999, "Rank": 1, - "CommandName": "New-PnPTerm", - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Id": 999, + "CommandName": "New-PnPTerm" }, { - "Id": 1000, "Rank": 2, - "CommandName": "New-PnPTerm", - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1000, + "CommandName": "New-PnPTerm" }, { - "Id": 1001, "Rank": 1, - "CommandName": "New-PnPTermGroup", - "Command": "New-PnPTermGroup -GroupName \"Countries\"" + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Id": 1001, + "CommandName": "New-PnPTermGroup" }, { - "Id": 1002, "Rank": 1, - "CommandName": "New-PnPTermLabel", - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "Id": 1002, + "CommandName": "New-PnPTermLabel" }, { - "Id": 1003, "Rank": 1, - "CommandName": "New-PnPTermSet", - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "Id": 1003, + "CommandName": "New-PnPTermSet" }, { - "Id": 1004, "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob", - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "Id": 1004, + "CommandName": "New-PnPUPABulkImportJob" }, { - "Id": 1005, "Rank": 2, - "CommandName": "New-PnPUPABulkImportJob", - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", + "Id": 1005, + "CommandName": "New-PnPUPABulkImportJob" }, { - "Id": 1006, "Rank": 1, - "CommandName": "New-PnPUser", - "Command": "New-PnPUser -LoginName user@company.com" + "Command": "New-PnPUser -LoginName user@company.com", + "Id": 1006, + "CommandName": "New-PnPUser" }, { - "Id": 1007, "Rank": 1, - "CommandName": "New-PnPWeb", - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "Id": 1007, + "CommandName": "New-PnPWeb" }, { - "Id": 1008, "Rank": 1, - "CommandName": "Publish-PnPApp", - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 1008, + "CommandName": "Publish-PnPApp" }, { - "Id": 1009, "Rank": 2, - "CommandName": "Publish-PnPApp", - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "Id": 1009, + "CommandName": "Publish-PnPApp" }, { - "Id": 1010, "Rank": 1, - "CommandName": "Publish-PnPCompanyApp", - "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": "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": 1010, + "CommandName": "Publish-PnPCompanyApp" }, { - "Id": 1011, "Rank": 1, - "CommandName": "Publish-PnPContentType", - "Command": "Publish-PnPContentType -ContentType 0x0101" + "Command": "Publish-PnPContentType -ContentType 0x0101", + "Id": 1011, + "CommandName": "Publish-PnPContentType" }, { - "Id": 1012, "Rank": 1, - "CommandName": "Publish-PnPSyntexModel", - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 1012, + "CommandName": "Publish-PnPSyntexModel" }, { - "Id": 1013, "Rank": 2, - "CommandName": "Publish-PnPSyntexModel", - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 1013, + "CommandName": "Publish-PnPSyntexModel" }, { - "Id": 1014, "Rank": 1, - "CommandName": "Read-PnPSiteTemplate", - "Command": "Read-PnPSiteTemplate -Path template.pnp" + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Id": 1014, + "CommandName": "Read-PnPSiteTemplate" }, { - "Id": 1015, "Rank": 2, - "CommandName": "Read-PnPSiteTemplate", - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Id": 1015, + "CommandName": "Read-PnPSiteTemplate" }, { - "Id": 1016, "Rank": 3, - "CommandName": "Read-PnPSiteTemplate", - "Command": "Read-PnPSiteTemplate -Xml $xml" + "Command": "Read-PnPSiteTemplate -Xml $xml", + "Id": 1016, + "CommandName": "Read-PnPSiteTemplate" }, { - "Id": 1017, "Rank": 1, - "CommandName": "Read-PnPTenantTemplate", - "Command": "Read-PnPTenantTemplate -Path template.pnp" + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Id": 1017, + "CommandName": "Read-PnPTenantTemplate" }, { - "Id": 1018, "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite", - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "Id": 1018, + "CommandName": "Register-PnPAppCatalogSite" }, { - "Id": 1019, "Rank": 1, - "CommandName": "Register-PnPAzureADApp", - "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 -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "Id": 1019, + "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1020, "Rank": 2, - "CommandName": "Register-PnPAzureADApp", - "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\")", + "Id": 1020, + "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1021, "Rank": 3, - "CommandName": "Register-PnPAzureADApp", - "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-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": 1021, + "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1022, "Rank": 4, - "CommandName": "Register-PnPAzureADApp", - "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-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": 1022, + "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1023, "Rank": 5, - "CommandName": "Register-PnPAzureADApp", - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "Id": 1023, + "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1024, "Rank": 6, - "CommandName": "Register-PnPAzureADApp", - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "Id": 1024, + "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1025, "Rank": 7, - "CommandName": "Register-PnPAzureADApp", - "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-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": 1025, + "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1026, "Rank": 1, - "CommandName": "Register-PnPHubSite", - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1026, + "CommandName": "Register-PnPHubSite" }, { - "Id": 1027, "Rank": 2, - "CommandName": "Register-PnPHubSite", - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Id": 1027, + "CommandName": "Register-PnPHubSite" }, { - "Id": 1028, "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess", - "Command": "Register-PnPManagementShellAccess" + "Command": "Register-PnPManagementShellAccess", + "Id": 1028, + "CommandName": "Register-PnPManagementShellAccess" }, { - "Id": 1029, "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess", - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Id": 1029, + "CommandName": "Register-PnPManagementShellAccess" }, { - "Id": 1030, "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess", - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Id": 1030, + "CommandName": "Register-PnPManagementShellAccess" }, { - "Id": 1031, "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Id": 1031, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "Id": 1032, "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Id": 1032, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "Id": 1033, "Rank": 1, - "CommandName": "Remove-PnPAlert", - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "Id": 1033, + "CommandName": "Remove-PnPAlert" }, { - "Id": 1034, "Rank": 2, - "CommandName": "Remove-PnPAlert", - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 1034, + "CommandName": "Remove-PnPAlert" }, { - "Id": 1035, "Rank": 1, - "CommandName": "Remove-PnPApp", - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1035, + "CommandName": "Remove-PnPApp" }, { - "Id": 1036, "Rank": 2, - "CommandName": "Remove-PnPApp", - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1036, + "CommandName": "Remove-PnPApp" }, { - "Id": 1037, "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer", - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1037, + "CommandName": "Remove-PnPApplicationCustomizer" }, { - "Id": 1038, "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer", - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1038, + "CommandName": "Remove-PnPApplicationCustomizer" }, { - "Id": 1039, "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification", - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Id": 1039, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "Id": 1040, "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification", - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1040, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "Id": 1041, "Rank": 1, - "CommandName": "Remove-PnPAzureADApp", - "Command": "Remove-PnPAzureADApp -Identity MyApp" + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Id": 1041, + "CommandName": "Remove-PnPAzureADApp" }, { - "Id": 1042, "Rank": 2, - "CommandName": "Remove-PnPAzureADApp", - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 1042, + "CommandName": "Remove-PnPAzureADApp" }, { - "Id": 1043, "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup", - "Command": "Remove-PnPAzureADGroup -Identity $groupId" + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Id": 1043, + "CommandName": "Remove-PnPAzureADGroup" }, { - "Id": 1044, "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup", - "Command": "Remove-PnPAzureADGroup -Identity $group" + "Command": "Remove-PnPAzureADGroup -Identity $group", + "Id": 1044, + "CommandName": "Remove-PnPAzureADGroup" }, { - "Id": 1045, "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember", - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1045, + "CommandName": "Remove-PnPAzureADGroupMember" }, { - "Id": 1046, "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner", - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1046, + "CommandName": "Remove-PnPAzureADGroupOwner" }, { - "Id": 1047, "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "Id": 1047, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 1048, "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Id": 1048, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 1049, "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 1049, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 1050, "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 1050, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 1051, "Rank": 1, - "CommandName": "Remove-PnPContainer", - "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" + "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "Id": 1051, + "CommandName": "Remove-PnPContainer" }, { - "Id": 1052, "Rank": 2, - "CommandName": "Remove-PnPContainer", - "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" + "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", + "Id": 1052, + "CommandName": "Remove-PnPContainer" }, { - "Id": 1053, "Rank": 1, - "CommandName": "Remove-PnPContentType", - "Command": "Remove-PnPContentType -Identity \"Project Document\"" + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Id": 1053, + "CommandName": "Remove-PnPContentType" }, { - "Id": 1054, "Rank": 2, - "CommandName": "Remove-PnPContentType", - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Id": 1054, + "CommandName": "Remove-PnPContentType" }, { - "Id": 1055, "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 1055, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "Id": 1056, "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 1056, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "Id": 1057, "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList", - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Id": 1057, + "CommandName": "Remove-PnPContentTypeFromList" }, { - "Id": 1058, "Rank": 1, - "CommandName": "Remove-PnPCustomAction", - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1058, + "CommandName": "Remove-PnPCustomAction" }, { - "Id": 1059, "Rank": 2, - "CommandName": "Remove-PnPCustomAction", - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1059, + "CommandName": "Remove-PnPCustomAction" }, { - "Id": 1060, "Rank": 3, - "CommandName": "Remove-PnPCustomAction", - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Id": 1060, + "CommandName": "Remove-PnPCustomAction" }, { - "Id": 1061, "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1061, + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { - "Id": 1062, "Rank": 1, - "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1062, + "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1063, "Rank": 2, - "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1063, + "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1064, "Rank": 3, - "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Id": 1064, + "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1065, "Rank": 4, - "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -List ProjectList" + "Command": "Remove-PnPEventReceiver -List ProjectList", + "Id": 1065, + "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1066, "Rank": 5, - "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver", + "Id": 1066, + "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1067, "Rank": 6, - "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Scope Site" + "Command": "Remove-PnPEventReceiver -Scope Site", + "Id": 1067, + "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1068, "Rank": 7, - "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Scope Web" + "Command": "Remove-PnPEventReceiver -Scope Web", + "Id": 1068, + "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1069, "Rank": 8, - "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Scope All" + "Command": "Remove-PnPEventReceiver -Scope All", + "Id": 1069, + "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1070, "Rank": 1, - "CommandName": "Remove-PnPField", - "Command": "Remove-PnPField -Identity \"Speakers\"" + "Command": "Remove-PnPField -Identity \"Speakers\"", + "Id": 1070, + "CommandName": "Remove-PnPField" }, { - "Id": 1071, "Rank": 2, - "CommandName": "Remove-PnPField", - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 1071, + "CommandName": "Remove-PnPField" }, { - "Id": 1072, "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType", - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 1072, + "CommandName": "Remove-PnPFieldFromContentType" }, { - "Id": 1073, "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType", - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Id": 1073, + "CommandName": "Remove-PnPFieldFromContentType" }, { - "Id": 1074, "Rank": 1, - "CommandName": "Remove-PnPFile", - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Id": 1074, + "CommandName": "Remove-PnPFile" }, { - "Id": 1075, "Rank": 2, - "CommandName": "Remove-PnPFile", - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Id": 1075, + "CommandName": "Remove-PnPFile" }, { - "Id": 1076, "Rank": 3, - "CommandName": "Remove-PnPFile", - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Id": 1076, + "CommandName": "Remove-PnPFile" }, { - "Id": 1077, "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Id": 1077, + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { - "Id": 1078, "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink", - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 1078, + "CommandName": "Remove-PnPFileSharingLink" }, { - "Id": 1079, "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink", - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Id": 1079, + "CommandName": "Remove-PnPFileSharingLink" }, { - "Id": 1080, "Rank": 1, - "CommandName": "Remove-PnPFileVersion", - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1080, + "CommandName": "Remove-PnPFileVersion" }, { - "Id": 1081, "Rank": 2, - "CommandName": "Remove-PnPFileVersion", - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1081, + "CommandName": "Remove-PnPFileVersion" }, { - "Id": 1082, "Rank": 3, - "CommandName": "Remove-PnPFileVersion", - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "Id": 1082, + "CommandName": "Remove-PnPFileVersion" }, { - "Id": 1083, "Rank": 1, - "CommandName": "Remove-PnPFlowOwner", - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "Id": 1083, + "CommandName": "Remove-PnPFlowOwner" }, { - "Id": 1084, "Rank": 2, - "CommandName": "Remove-PnPFlowOwner", - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "Id": 1084, + "CommandName": "Remove-PnPFlowOwner" }, { - "Id": 1085, "Rank": 3, - "CommandName": "Remove-PnPFlowOwner", - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "Id": 1085, + "CommandName": "Remove-PnPFlowOwner" }, { - "Id": 1086, "Rank": 4, - "CommandName": "Remove-PnPFlowOwner", - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "Id": 1086, + "CommandName": "Remove-PnPFlowOwner" }, { - "Id": 1087, "Rank": 1, - "CommandName": "Remove-PnPFolder", - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 1087, + "CommandName": "Remove-PnPFolder" }, { - "Id": 1088, "Rank": 2, - "CommandName": "Remove-PnPFolder", - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Id": 1088, + "CommandName": "Remove-PnPFolder" }, { - "Id": 1089, "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink", - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 1089, + "CommandName": "Remove-PnPFolderSharingLink" }, { - "Id": 1090, "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink", - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Id": 1090, + "CommandName": "Remove-PnPFolderSharingLink" }, { - "Id": 1091, "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription", - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Id": 1091, + "CommandName": "Remove-PnPGraphSubscription" }, { - "Id": 1092, "Rank": 1, - "CommandName": "Remove-PnPGroup", - "Command": "Remove-PnPGroup -Identity \"My Users\"" + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Id": 1092, + "CommandName": "Remove-PnPGroup" }, { - "Id": 1093, "Rank": 1, - "CommandName": "Remove-PnPGroupMember", - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 1093, + "CommandName": "Remove-PnPGroupMember" }, { - "Id": 1094, "Rank": 1, - "CommandName": "Remove-PnPHomeSite", - "Command": "Remove-PnPHomeSite" + "Command": "Remove-PnPHomeSite", + "Id": 1094, + "CommandName": "Remove-PnPHomeSite" }, { - "Id": 1095, "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation", - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1095, + "CommandName": "Remove-PnPHubSiteAssociation" }, { - "Id": 1096, "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation", - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Id": 1096, + "CommandName": "Remove-PnPHubToHubAssociation" }, { - "Id": 1097, "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation", - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Id": 1097, + "CommandName": "Remove-PnPHubToHubAssociation" }, { - "Id": 1098, "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty", - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Id": 1098, + "CommandName": "Remove-PnPIndexedProperty" }, { - "Id": 1099, "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity jQuery" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Id": 1099, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "Id": 1100, "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Id": 1100, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "Id": 1101, "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Id": 1101, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "Id": 1102, "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Scope Site" + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Id": 1102, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "Id": 1103, "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Id": 1103, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "Id": 1104, "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite", - "Command": "Remove-PnPKnowledgeHubSite" + "Command": "Remove-PnPKnowledgeHubSite", + "Id": 1104, + "CommandName": "Remove-PnPKnowledgeHubSite" }, { - "Id": 1105, "Rank": 1, - "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements" + "Command": "Remove-PnPList -Identity Announcements", + "Id": 1105, + "CommandName": "Remove-PnPList" }, { - "Id": 1106, "Rank": 2, - "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements -Force" + "Command": "Remove-PnPList -Identity Announcements -Force", + "Id": 1106, + "CommandName": "Remove-PnPList" }, { - "Id": 1107, "Rank": 3, - "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements -Recycle" + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Id": 1107, + "CommandName": "Remove-PnPList" }, { - "Id": 1108, "Rank": 4, - "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Id": 1108, + "CommandName": "Remove-PnPList" }, { - "Id": 1109, "Rank": 1, - "CommandName": "Remove-PnPListDesign", - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1109, + "CommandName": "Remove-PnPListDesign" }, { - "Id": 1110, "Rank": 1, - "CommandName": "Remove-PnPListItem", - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Id": 1110, + "CommandName": "Remove-PnPListItem" }, { - "Id": 1111, "Rank": 2, - "CommandName": "Remove-PnPListItem", - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Id": 1111, + "CommandName": "Remove-PnPListItem" }, { - "Id": 1112, "Rank": 3, - "CommandName": "Remove-PnPListItem", - "Command": "Remove-PnPListItem -List \"Demo List\"" + "Command": "Remove-PnPListItem -List \"Demo List\"", + "Id": 1112, + "CommandName": "Remove-PnPListItem" }, { - "Id": 1113, "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "Id": 1113, + "CommandName": "Remove-PnPListItemAttachment" }, { - "Id": 1114, "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "Id": 1114, + "CommandName": "Remove-PnPListItemAttachment" }, { - "Id": 1115, "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "Id": 1115, + "CommandName": "Remove-PnPListItemAttachment" }, { - "Id": 1116, "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Id": 1116, + "CommandName": "Remove-PnPListItemAttachment" }, { - "Id": 1117, "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Id": 1117, + "CommandName": "Remove-PnPListItemAttachment" }, { - "Id": 1118, "Rank": 1, - "CommandName": "Remove-PnPListItemVersion", - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1118, + "CommandName": "Remove-PnPListItemVersion" }, { - "Id": 1119, "Rank": 2, - "CommandName": "Remove-PnPListItemVersion", - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1119, + "CommandName": "Remove-PnPListItemVersion" }, { - "Id": 1120, "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group", - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Id": 1120, + "CommandName": "Remove-PnPMicrosoft365Group" }, { - "Id": 1121, "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group", - "Command": "Remove-PnPMicrosoft365Group -Identity $group" + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Id": 1121, + "CommandName": "Remove-PnPMicrosoft365Group" }, { - "Id": 1122, "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1122, + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { - "Id": 1123, "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1123, + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { - "Id": 1124, "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupPhoto", - "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"" + "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", + "Id": 1124, + "CommandName": "Remove-PnPMicrosoft365GroupPhoto" }, { - "Id": 1125, "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Id": 1125, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "Id": 1126, "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Id": 1126, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "Id": 1127, "Rank": 1, - "CommandName": "Remove-PnPNavigationNode", - "Command": "Remove-PnPNavigationNode -Identity 1032" + "Command": "Remove-PnPNavigationNode -Identity 1032", + "Id": 1127, + "CommandName": "Remove-PnPNavigationNode" }, { - "Id": 1128, "Rank": 2, - "CommandName": "Remove-PnPNavigationNode", - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Id": 1128, + "CommandName": "Remove-PnPNavigationNode" }, { - "Id": 1129, "Rank": 3, - "CommandName": "Remove-PnPNavigationNode", - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Id": 1129, + "CommandName": "Remove-PnPNavigationNode" }, { - "Id": 1130, "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Id": 1130, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Id": 1131, "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Id": 1131, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Id": 1132, "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Id": 1132, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Id": 1133, "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite", - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1133, + "CommandName": "Remove-PnPOrgNewsSite" }, { - "Id": 1134, "Rank": 1, - "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage -Identity \"MyPage\"" + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Id": 1134, + "CommandName": "Remove-PnPPage" }, { - "Id": 1135, "Rank": 2, - "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Id": 1135, + "CommandName": "Remove-PnPPage" }, { - "Id": 1136, "Rank": 3, - "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage $page" + "Command": "Remove-PnPPage $page", + "Id": 1136, + "CommandName": "Remove-PnPPage" }, { - "Id": 1137, "Rank": 4, - "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Id": 1137, + "CommandName": "Remove-PnPPage" }, { - "Id": 1138, "Rank": 1, - "CommandName": "Remove-PnPPageComponent", - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1138, + "CommandName": "Remove-PnPPageComponent" }, { - "Id": 1139, "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket", - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Id": 1139, + "CommandName": "Remove-PnPPlannerBucket" }, { - "Id": 1140, "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan", - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Id": 1140, + "CommandName": "Remove-PnPPlannerPlan" }, { - "Id": 1141, "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster", - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 1141, + "CommandName": "Remove-PnPPlannerRoster" }, { - "Id": 1142, "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember", - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1142, + "CommandName": "Remove-PnPPlannerRosterMember" }, { - "Id": 1143, "Rank": 1, - "CommandName": "Remove-PnPPlannerTask", - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Id": 1143, + "CommandName": "Remove-PnPPlannerTask" }, { - "Id": 1144, "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue", - "Command": "Remove-PnPPropertyBagValue -Key MyKey" + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Id": 1144, + "CommandName": "Remove-PnPPropertyBagValue" }, { - "Id": 1145, "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue", - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Id": 1145, + "CommandName": "Remove-PnPPropertyBagValue" }, { - "Id": 1146, "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue", - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Id": 1146, + "CommandName": "Remove-PnPPropertyBagValue" }, { - "Id": 1147, "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition", - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 1147, + "CommandName": "Remove-PnPPublishingImageRendition" }, { - "Id": 1148, "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition", - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Id": 1148, + "CommandName": "Remove-PnPRoleDefinition" }, { - "Id": 1149, "Rank": 1, - "CommandName": "Remove-PnPSdnProvider", - "Command": "Remove-PnPSdnProvider -Confirm:false" + "Command": "Remove-PnPSdnProvider -Confirm:false", + "Id": 1149, + "CommandName": "Remove-PnPSdnProvider" }, { - "Id": 1150, "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Configuration $config" + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Id": 1150, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "Id": 1151, "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1151, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "Id": 1152, "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1152, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "Id": 1153, "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1153, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "Id": 1154, "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1154, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "Id": 1155, "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1155, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "Id": 1156, "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 1156, + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { - "Id": 1157, "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Command": "Remove-PnPSiteCollectionTermStore" + "Command": "Remove-PnPSiteCollectionTermStore", + "Id": 1157, + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { - "Id": 1158, "Rank": 1, - "CommandName": "Remove-PnPSiteDesign", - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1158, + "CommandName": "Remove-PnPSiteDesign" }, { - "Id": 1159, "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask", - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1159, + "CommandName": "Remove-PnPSiteDesignTask" }, { - "Id": 1160, "Rank": 1, - "CommandName": "Remove-PnPSiteGroup", - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1160, + "CommandName": "Remove-PnPSiteGroup" }, { - "Id": 1161, "Rank": 2, - "CommandName": "Remove-PnPSiteGroup", - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Id": 1161, + "CommandName": "Remove-PnPSiteGroup" }, { - "Id": 1162, "Rank": 1, - "CommandName": "Remove-PnPSiteScript", - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1162, + "CommandName": "Remove-PnPSiteScript" }, { - "Id": 1163, "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations", - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 1163, + "CommandName": "Remove-PnPSiteUserInvitations" }, { - "Id": 1164, "Rank": 1, - "CommandName": "Remove-PnPStorageEntity", - "Command": "Remove-PnPStorageEntity -Key MyKey" + "Command": "Remove-PnPStorageEntity -Key MyKey", + "Id": 1164, + "CommandName": "Remove-PnPStorageEntity" }, { - "Id": 1165, "Rank": 2, - "CommandName": "Remove-PnPStorageEntity", - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 1165, + "CommandName": "Remove-PnPStorageEntity" }, { - "Id": 1166, "Rank": 1, - "CommandName": "Remove-PnPStoredCredential", - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Id": 1166, + "CommandName": "Remove-PnPStoredCredential" }, { - "Id": 1167, "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem", - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Id": 1167, + "CommandName": "Remove-PnPTaxonomyItem" }, { - "Id": 1168, "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem", - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Id": 1168, + "CommandName": "Remove-PnPTaxonomyItem" }, { - "Id": 1169, "Rank": 1, - "CommandName": "Remove-PnPTeamsApp", - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Id": 1169, + "CommandName": "Remove-PnPTeamsApp" }, { - "Id": 1170, "Rank": 2, - "CommandName": "Remove-PnPTeamsApp", - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Id": 1170, + "CommandName": "Remove-PnPTeamsApp" }, { - "Id": 1171, "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel", - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "Id": 1171, + "CommandName": "Remove-PnPTeamsChannel" }, { - "Id": 1172, "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser", - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "Id": 1172, + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Id": 1173, "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser", - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 1173, + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Id": 1174, "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser", - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "Id": 1174, + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Id": 1175, "Rank": 1, - "CommandName": "Remove-PnPTeamsTab", - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "Id": 1175, + "CommandName": "Remove-PnPTeamsTab" }, { - "Id": 1176, "Rank": 2, - "CommandName": "Remove-PnPTeamsTab", - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "Id": 1176, + "CommandName": "Remove-PnPTeamsTab" }, { - "Id": 1177, "Rank": 3, - "CommandName": "Remove-PnPTeamsTab", - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", + "Id": 1177, + "CommandName": "Remove-PnPTeamsTab" }, { - "Id": 1178, "Rank": 1, - "CommandName": "Remove-PnPTeamsTag", - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 1178, + "CommandName": "Remove-PnPTeamsTag" }, { - "Id": 1179, "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam", - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 1179, + "CommandName": "Remove-PnPTeamsTeam" }, { - "Id": 1180, "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam", - "Command": "Remove-PnPTeamsTeam -Identity testteam" + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Id": 1180, + "CommandName": "Remove-PnPTeamsTeam" }, { - "Id": 1181, "Rank": 1, - "CommandName": "Remove-PnPTeamsUser", - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Id": 1181, + "CommandName": "Remove-PnPTeamsUser" }, { - "Id": 1182, "Rank": 2, - "CommandName": "Remove-PnPTeamsUser", - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1182, + "CommandName": "Remove-PnPTeamsUser" }, { - "Id": 1183, "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin", - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 1183, + "CommandName": "Remove-PnPTenantCdnOrigin" }, { - "Id": 1184, "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite", - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1184, + "CommandName": "Remove-PnPTenantDeletedSite" }, { - "Id": 1185, "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite", - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1185, + "CommandName": "Remove-PnPTenantDeletedSite" }, { - "Id": 1186, "Rank": 1, - "CommandName": "Remove-PnPTenantSite", - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1186, + "CommandName": "Remove-PnPTenantSite" }, { - "Id": 1187, "Rank": 2, - "CommandName": "Remove-PnPTenantSite", - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "Id": 1187, + "CommandName": "Remove-PnPTenantSite" }, { - "Id": 1188, "Rank": 3, - "CommandName": "Remove-PnPTenantSite", - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Id": 1188, + "CommandName": "Remove-PnPTenantSite" }, { - "Id": 1189, "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Command": "Remove-PnPTenantSyncClientRestriction" + "Command": "Remove-PnPTenantSyncClientRestriction", + "Id": 1189, + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { - "Id": 1190, "Rank": 1, - "CommandName": "Remove-PnPTenantTheme", - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 1190, + "CommandName": "Remove-PnPTenantTheme" }, { - "Id": 1191, "Rank": 1, - "CommandName": "Remove-PnPTerm", - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1191, + "CommandName": "Remove-PnPTerm" }, { - "Id": 1192, "Rank": 2, - "CommandName": "Remove-PnPTerm", - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1192, + "CommandName": "Remove-PnPTerm" }, { - "Id": 1193, "Rank": 1, - "CommandName": "Remove-PnPTermGroup", - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1193, + "CommandName": "Remove-PnPTermGroup" }, { - "Id": 1194, "Rank": 2, - "CommandName": "Remove-PnPTermGroup", - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Id": 1194, + "CommandName": "Remove-PnPTermGroup" }, { - "Id": 1195, "Rank": 3, - "CommandName": "Remove-PnPTermGroup", - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Id": 1195, + "CommandName": "Remove-PnPTermGroup" }, { - "Id": 1196, "Rank": 1, - "CommandName": "Remove-PnPTermLabel", - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "Id": 1196, + "CommandName": "Remove-PnPTermLabel" }, { - "Id": 1197, "Rank": 2, - "CommandName": "Remove-PnPTermLabel", - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1197, + "CommandName": "Remove-PnPTermLabel" }, { - "Id": 1198, "Rank": 1, - "CommandName": "Remove-PnPUser", - "Command": "Remove-PnPUser -Identity 23" + "Command": "Remove-PnPUser -Identity 23", + "Id": 1198, + "CommandName": "Remove-PnPUser" }, { - "Id": 1199, "Rank": 2, - "CommandName": "Remove-PnPUser", - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "Id": 1199, + "CommandName": "Remove-PnPUser" }, { - "Id": 1200, "Rank": 3, - "CommandName": "Remove-PnPUser", - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "Id": 1200, + "CommandName": "Remove-PnPUser" }, { - "Id": 1201, "Rank": 1, - "CommandName": "Remove-PnPUserInfo", - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Id": 1201, + "CommandName": "Remove-PnPUserInfo" }, { - "Id": 1202, "Rank": 1, - "CommandName": "Remove-PnPUserProfile", - "Command": "Remove-PnPUserProfile -LoginName user@domain.com" + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Id": 1202, + "CommandName": "Remove-PnPUserProfile" }, { - "Id": 1203, "Rank": 1, - "CommandName": "Remove-PnPView", - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Id": 1203, + "CommandName": "Remove-PnPView" }, { - "Id": 1204, "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 1204, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { - "Id": 1205, "Rank": 1, - "CommandName": "Remove-PnPWeb", - "Command": "Remove-PnPWeb -Identity projectA" + "Command": "Remove-PnPWeb -Identity projectA", + "Id": 1205, + "CommandName": "Remove-PnPWeb" }, { - "Id": 1206, "Rank": 2, - "CommandName": "Remove-PnPWeb", - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Id": 1206, + "CommandName": "Remove-PnPWeb" }, { - "Id": 1207, "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription", - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "Id": 1207, + "CommandName": "Remove-PnPWebhookSubscription" }, { - "Id": 1208, "Rank": 1, - "CommandName": "Remove-PnPWebPart", - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1208, + "CommandName": "Remove-PnPWebPart" }, { - "Id": 1209, "Rank": 2, - "CommandName": "Remove-PnPWebPart", - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Id": 1209, + "CommandName": "Remove-PnPWebPart" }, { - "Id": 1210, "Rank": 1, - "CommandName": "Remove-PnPWikiPage", - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Id": 1210, + "CommandName": "Remove-PnPWikiPage" }, { - "Id": 1211, "Rank": 1, - "CommandName": "Rename-PnPFile", - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Id": 1211, + "CommandName": "Rename-PnPFile" }, { - "Id": 1212, "Rank": 2, - "CommandName": "Rename-PnPFile", - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "Id": 1212, + "CommandName": "Rename-PnPFile" }, { - "Id": 1213, "Rank": 3, - "CommandName": "Rename-PnPFile", - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Id": 1213, + "CommandName": "Rename-PnPFile" }, { - "Id": 1214, "Rank": 1, - "CommandName": "Rename-PnPFolder", - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Id": 1214, + "CommandName": "Rename-PnPFolder" }, { - "Id": 1215, "Rank": 1, - "CommandName": "Repair-PnPSite", - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1215, + "CommandName": "Repair-PnPSite" }, { - "Id": 1216, "Rank": 2, - "CommandName": "Repair-PnPSite", - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1216, + "CommandName": "Repair-PnPSite" }, { - "Id": 1217, "Rank": 1, - "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken" + "Command": "Request-PnPAccessToken", + "Id": 1217, + "CommandName": "Request-PnPAccessToken" }, { - "Id": 1218, "Rank": 2, - "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Id": 1218, + "CommandName": "Request-PnPAccessToken" }, { - "Id": 1219, "Rank": 3, - "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "Id": 1219, + "CommandName": "Request-PnPAccessToken" }, { - "Id": 1220, "Rank": 4, - "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "Id": 1220, + "CommandName": "Request-PnPAccessToken" }, { - "Id": 1221, "Rank": 1, - "CommandName": "Request-PnPPersonalSite", - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Id": 1221, + "CommandName": "Request-PnPPersonalSite" }, { - "Id": 1222, "Rank": 2, - "CommandName": "Request-PnPPersonalSite", - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Id": 1222, + "CommandName": "Request-PnPPersonalSite" }, { - "Id": 1223, "Rank": 1, - "CommandName": "Request-PnPReIndexList", - "Command": "Request-PnPReIndexList -Identity \"Demo List\"" + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Id": 1223, + "CommandName": "Request-PnPReIndexList" }, { - "Id": 1224, "Rank": 1, - "CommandName": "Request-PnPReIndexWeb", - "Command": "Request-PnPReIndexWeb" + "Command": "Request-PnPReIndexWeb", + "Id": 1224, + "CommandName": "Request-PnPReIndexWeb" }, { - "Id": 1225, "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Id": 1225, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Id": 1226, "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Id": 1226, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Id": 1227, "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Id": 1227, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Id": 1228, "Rank": 1, - "CommandName": "Reset-PnPFileVersion", - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "Id": 1228, + "CommandName": "Reset-PnPFileVersion" }, { - "Id": 1229, "Rank": 2, - "CommandName": "Reset-PnPFileVersion", - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Id": 1229, + "CommandName": "Reset-PnPFileVersion" }, { - "Id": 1230, "Rank": 1, - "CommandName": "Reset-PnPLabel", - "Command": "Reset-PnPLabel -List \"Demo List\"" + "Command": "Reset-PnPLabel -List \"Demo List\"", + "Id": 1230, + "CommandName": "Reset-PnPLabel" }, { - "Id": 1231, "Rank": 2, - "CommandName": "Reset-PnPLabel", - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Id": 1231, + "CommandName": "Reset-PnPLabel" }, { - "Id": 1232, "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Command": "Reset-PnPMicrosoft365GroupExpiration" + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1232, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Id": 1233, "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Id": 1233, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { - "Id": 1234, "Rank": 1, - "CommandName": "Resolve-PnPFolder", - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Id": 1234, + "CommandName": "Resolve-PnPFolder" }, { - "Id": 1235, "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1235, + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { - "Id": 1236, "Rank": 1, - "CommandName": "Restore-PnPFileVersion", - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1236, + "CommandName": "Restore-PnPFileVersion" }, { - "Id": 1237, "Rank": 2, - "CommandName": "Restore-PnPFileVersion", - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Id": 1237, + "CommandName": "Restore-PnPFileVersion" }, { - "Id": 1238, "Rank": 3, - "CommandName": "Restore-PnPFileVersion", - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1238, + "CommandName": "Restore-PnPFileVersion" }, { - "Id": 1239, "Rank": 1, - "CommandName": "Restore-PnPListItemVersion", - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1239, + "CommandName": "Restore-PnPListItemVersion" }, { - "Id": 1240, "Rank": 2, - "CommandName": "Restore-PnPListItemVersion", - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1240, + "CommandName": "Restore-PnPListItemVersion" }, { - "Id": 1241, "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem", - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 1241, + "CommandName": "Restore-PnPRecycleBinItem" }, { - "Id": 1242, "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1242, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "Id": 1243, "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 1243, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "Id": 1244, "Rank": 1, - "CommandName": "Restore-PnPTenantSite", - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1244, + "CommandName": "Restore-PnPTenantSite" }, { - "Id": 1245, "Rank": 2, - "CommandName": "Restore-PnPTenantSite", - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1245, + "CommandName": "Restore-PnPTenantSite" }, { - "Id": 1246, "Rank": 3, - "CommandName": "Restore-PnPTenantSite", - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Id": 1246, + "CommandName": "Restore-PnPTenantSite" }, { - "Id": 1247, "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Id": 1247, + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { - "Id": 1248, "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights", - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1248, + "CommandName": "Revoke-PnPHubSiteRights" }, { - "Id": 1249, "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights", - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1249, + "CommandName": "Revoke-PnPSiteDesignRights" }, { - "Id": 1250, "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 1250, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { - "Id": 1251, "Rank": 1, - "CommandName": "Revoke-PnPUserSession", - "Command": "Revoke-PnPUserSession -User user1@contoso.com" + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Id": 1251, + "CommandName": "Revoke-PnPUserSession" }, { - "Id": 1252, "Rank": 1, - "CommandName": "Save-PnPPageConversionLog", - "Command": "Save-PnPPageConversionLog" + "Command": "Save-PnPPageConversionLog", + "Id": 1252, + "CommandName": "Save-PnPPageConversionLog" }, { - "Id": 1253, "Rank": 1, - "CommandName": "Save-PnPSiteTemplate", - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Id": 1253, + "CommandName": "Save-PnPSiteTemplate" }, { - "Id": 1254, "Rank": 1, - "CommandName": "Save-PnPTenantTemplate", - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "Id": 1254, + "CommandName": "Save-PnPTenantTemplate" }, { - "Id": 1255, "Rank": 1, - "CommandName": "Send-PnPMail", - "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\"", + "Id": 1255, + "CommandName": "Send-PnPMail" }, { - "Id": 1256, "Rank": 2, - "CommandName": "Send-PnPMail", - "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": "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": 1256, + "CommandName": "Send-PnPMail" }, { - "Id": 1257, "Rank": 3, - "CommandName": "Send-PnPMail", - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Id": 1257, + "CommandName": "Send-PnPMail" }, { - "Id": 1258, "Rank": 4, - "CommandName": "Send-PnPMail", - "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": "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": 1258, + "CommandName": "Send-PnPMail" }, { - "Id": 1259, "Rank": 5, - "CommandName": "Send-PnPMail", - "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": "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": 1259, + "CommandName": "Send-PnPMail" }, { - "Id": 1260, "Rank": 6, - "CommandName": "Send-PnPMail", - "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": "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": 1260, + "CommandName": "Send-PnPMail" }, { - "Id": 1261, "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Id": 1261, + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { - "Id": 1262, "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer", - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1262, + "CommandName": "Set-PnPApplicationCustomizer" }, { - "Id": 1263, "Rank": 2, - "CommandName": "Set-PnPApplicationCustomizer", - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "Id": 1263, + "CommandName": "Set-PnPApplicationCustomizer" }, { - "Id": 1264, "Rank": 1, - "CommandName": "Set-PnPAppSideLoading", - "Command": "Set-PnPAppSideLoading -On" + "Command": "Set-PnPAppSideLoading -On", + "Id": 1264, + "CommandName": "Set-PnPAppSideLoading" }, { - "Id": 1265, "Rank": 2, - "CommandName": "Set-PnPAppSideLoading", - "Command": "Set-PnPAppSideLoading -Off" + "Command": "Set-PnPAppSideLoading -Off", + "Id": 1265, + "CommandName": "Set-PnPAppSideLoading" }, { - "Id": 1266, "Rank": 1, - "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -EnableAll" + "Command": "Set-PnPAuditing -EnableAll", + "Id": 1266, + "CommandName": "Set-PnPAuditing" }, { - "Id": 1267, "Rank": 2, - "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -DisableAll" + "Command": "Set-PnPAuditing -DisableAll", + "Id": 1267, + "CommandName": "Set-PnPAuditing" }, { - "Id": 1268, "Rank": 3, - "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -RetentionTime 7" + "Command": "Set-PnPAuditing -RetentionTime 7", + "Id": 1268, + "CommandName": "Set-PnPAuditing" }, { - "Id": 1269, "Rank": 4, - "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -TrimAuditLog" + "Command": "Set-PnPAuditing -TrimAuditLog", + "Id": 1269, + "CommandName": "Set-PnPAuditing" }, { - "Id": 1270, "Rank": 5, - "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Id": 1270, + "CommandName": "Set-PnPAuditing" }, { - "Id": 1271, "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts", - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Id": 1271, + "CommandName": "Set-PnPAvailablePageLayouts" }, { - "Id": 1272, "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission", - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Id": 1272, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "Id": 1273, "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission", - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Id": 1273, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "Id": 1274, "Rank": 1, - "CommandName": "Set-PnPAzureADGroup", - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1274, + "CommandName": "Set-PnPAzureADGroup" }, { - "Id": 1275, "Rank": 2, - "CommandName": "Set-PnPAzureADGroup", - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1275, + "CommandName": "Set-PnPAzureADGroup" }, { - "Id": 1276, "Rank": 3, - "CommandName": "Set-PnPAzureADGroup", - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "Id": 1276, + "CommandName": "Set-PnPAzureADGroup" }, { - "Id": 1277, "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout", - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "Id": 1277, + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Id": 1278, "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout", - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Id": 1278, + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Id": 1279, "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout", - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Id": 1279, + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Id": 1280, "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Id": 1280, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "Id": 1281, "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Id": 1281, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "Id": 1282, "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Id": 1282, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Id": 1283, "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Id": 1283, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Id": 1284, "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Id": 1284, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Id": 1285, "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Id": 1285, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Id": 1286, "Rank": 1, - "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1286, + "CommandName": "Set-PnPContentType" }, { - "Id": 1287, "Rank": 2, - "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "Id": 1287, + "CommandName": "Set-PnPContentType" }, { - "Id": 1288, "Rank": 3, - "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1288, + "CommandName": "Set-PnPContentType" }, { - "Id": 1289, "Rank": 4, - "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1289, + "CommandName": "Set-PnPContentType" }, { - "Id": 1290, "Rank": 5, - "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1290, + "CommandName": "Set-PnPContentType" }, { - "Id": 1291, "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "Id": 1291, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "Id": 1292, "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "Id": 1292, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "Id": 1293, "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Id": 1293, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "Id": 1294, "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Id": 1294, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "Id": 1295, "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList", - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Id": 1295, + "CommandName": "Set-PnPDefaultContentTypeToList" }, { - "Id": 1296, "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout", - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Id": 1296, + "CommandName": "Set-PnPDefaultPageLayout" }, { - "Id": 1297, "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout", - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Id": 1297, + "CommandName": "Set-PnPDefaultPageLayout" }, { - "Id": 1298, "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout", - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Id": 1298, + "CommandName": "Set-PnPDefaultPageLayout" }, { - "Id": 1299, "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation", - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Id": 1299, + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Id": 1300, "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation", - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1300, + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Id": 1301, "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation", - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1301, + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Id": 1302, "Rank": 1, - "CommandName": "Set-PnPDocumentSetField", - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "Id": 1302, + "CommandName": "Set-PnPDocumentSetField" }, { - "Id": 1303, "Rank": 2, - "CommandName": "Set-PnPDocumentSetField", - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "Id": 1303, + "CommandName": "Set-PnPDocumentSetField" }, { - "Id": 1304, "Rank": 1, - "CommandName": "Set-PnPField", - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "Id": 1304, + "CommandName": "Set-PnPField" }, { - "Id": 1305, "Rank": 2, - "CommandName": "Set-PnPField", - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "Id": 1305, + "CommandName": "Set-PnPField" }, { - "Id": 1306, "Rank": 3, - "CommandName": "Set-PnPField", - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Id": 1306, + "CommandName": "Set-PnPField" }, { - "Id": 1307, "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn", - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Id": 1307, + "CommandName": "Set-PnPFileCheckedIn" }, { - "Id": 1308, "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn", - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Id": 1308, + "CommandName": "Set-PnPFileCheckedIn" }, { - "Id": 1309, "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut", - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "Id": 1309, + "CommandName": "Set-PnPFileCheckedOut" }, { - "Id": 1310, "Rank": 1, - "CommandName": "Set-PnPFolderPermission", - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1310, + "CommandName": "Set-PnPFolderPermission" }, { - "Id": 1311, "Rank": 2, - "CommandName": "Set-PnPFolderPermission", - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1311, + "CommandName": "Set-PnPFolderPermission" }, { - "Id": 1312, "Rank": 3, - "CommandName": "Set-PnPFolderPermission", - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1312, + "CommandName": "Set-PnPFolderPermission" }, { - "Id": 1313, "Rank": 1, - "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -Enabled:$true" + "Command": "Set-PnPFooter -Enabled:$true", + "Id": 1313, + "CommandName": "Set-PnPFooter" }, { - "Id": 1314, "Rank": 2, - "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Id": 1314, + "CommandName": "Set-PnPFooter" }, { - "Id": 1315, "Rank": 3, - "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Id": 1315, + "CommandName": "Set-PnPFooter" }, { - "Id": 1316, "Rank": 4, - "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -LogoUrl \"\"" + "Command": "Set-PnPFooter -LogoUrl \"\"", + "Id": 1316, + "CommandName": "Set-PnPFooter" }, { - "Id": 1317, "Rank": 1, - "CommandName": "Set-PnPGraphSubscription", - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "Id": 1317, + "CommandName": "Set-PnPGraphSubscription" }, { - "Id": 1318, "Rank": 1, - "CommandName": "Set-PnPGroup", - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Id": 1318, + "CommandName": "Set-PnPGroup" }, { - "Id": 1319, "Rank": 2, - "CommandName": "Set-PnPGroup", - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Id": 1319, + "CommandName": "Set-PnPGroup" }, { - "Id": 1320, "Rank": 1, - "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Id": 1320, + "CommandName": "Set-PnPGroupPermissions" }, { - "Id": 1321, "Rank": 2, - "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Id": 1321, + "CommandName": "Set-PnPGroupPermissions" }, { - "Id": 1322, "Rank": 3, - "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Id": 1322, + "CommandName": "Set-PnPGroupPermissions" }, { - "Id": 1323, "Rank": 4, - "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Id": 1323, + "CommandName": "Set-PnPGroupPermissions" }, { - "Id": 1324, "Rank": 5, - "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Id": 1324, + "CommandName": "Set-PnPGroupPermissions" }, { - "Id": 1325, "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes", - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Id": 1325, + "CommandName": "Set-PnPHideDefaultThemes" }, { - "Id": 1326, "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes", - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Id": 1326, + "CommandName": "Set-PnPHideDefaultThemes" }, { - "Id": 1327, "Rank": 1, - "CommandName": "Set-PnPHomePage", - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Id": 1327, + "CommandName": "Set-PnPHomePage" }, { - "Id": 1328, "Rank": 2, - "CommandName": "Set-PnPHomePage", - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Id": 1328, + "CommandName": "Set-PnPHomePage" }, { - "Id": 1329, "Rank": 1, - "CommandName": "Set-PnPHomeSite", - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Id": 1329, + "CommandName": "Set-PnPHomeSite" }, { - "Id": 1330, "Rank": 2, - "CommandName": "Set-PnPHomeSite", - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "Id": 1330, + "CommandName": "Set-PnPHomeSite" }, { - "Id": 1331, "Rank": 1, - "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "Id": 1331, + "CommandName": "Set-PnPHubSite" }, { - "Id": 1332, "Rank": 2, - "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "Id": 1332, + "CommandName": "Set-PnPHubSite" }, { - "Id": 1333, "Rank": 3, - "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "Id": 1333, + "CommandName": "Set-PnPHubSite" }, { - "Id": 1334, "Rank": 4, - "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "Id": 1334, + "CommandName": "Set-PnPHubSite" }, { - "Id": 1335, "Rank": 5, - "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "Id": 1335, + "CommandName": "Set-PnPHubSite" }, { - "Id": 1336, "Rank": 6, - "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "Id": 1336, + "CommandName": "Set-PnPHubSite" }, { - "Id": 1337, "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn", - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "Id": 1337, + "CommandName": "Set-PnPImageListItemColumn" }, { - "Id": 1338, "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn", - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Id": 1338, + "CommandName": "Set-PnPImageListItemColumn" }, { - "Id": 1339, "Rank": 1, - "CommandName": "Set-PnPIndexedProperties", - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Id": 1339, + "CommandName": "Set-PnPIndexedProperties" }, { - "Id": 1340, "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Id": 1340, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "Id": 1341, "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Id": 1341, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "Id": 1342, "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite", - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Id": 1342, + "CommandName": "Set-PnPKnowledgeHubSite" }, { - "Id": 1343, "Rank": 1, - "CommandName": "Set-PnPLabel", - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Id": 1343, + "CommandName": "Set-PnPLabel" }, { - "Id": 1344, "Rank": 2, - "CommandName": "Set-PnPLabel", - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Id": 1344, + "CommandName": "Set-PnPLabel" }, { - "Id": 1345, "Rank": 1, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Id": 1345, + "CommandName": "Set-PnPList" }, { - "Id": 1346, "Rank": 2, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Id": 1346, + "CommandName": "Set-PnPList" }, { - "Id": 1347, "Rank": 3, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Id": 1347, + "CommandName": "Set-PnPList" }, { - "Id": 1348, "Rank": 4, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "Id": 1348, + "CommandName": "Set-PnPList" }, { - "Id": 1349, "Rank": 5, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Id": 1349, + "CommandName": "Set-PnPList" }, { - "Id": 1350, "Rank": 6, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Id": 1350, + "CommandName": "Set-PnPList" }, { - "Id": 1351, "Rank": 7, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Id": 1351, + "CommandName": "Set-PnPList" }, { - "Id": 1352, "Rank": 8, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Id": 1352, + "CommandName": "Set-PnPList" }, { - "Id": 1353, "Rank": 9, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Id": 1353, + "CommandName": "Set-PnPList" }, { - "Id": 1354, "Rank": 10, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Id": 1354, + "CommandName": "Set-PnPList" }, { - "Id": 1355, "Rank": 11, - "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Id": 1355, + "CommandName": "Set-PnPList" }, { - "Id": 1356, "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement", - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Id": 1356, + "CommandName": "Set-PnPListInformationRightsManagement" }, { - "Id": 1357, "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement", - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Id": 1357, + "CommandName": "Set-PnPListInformationRightsManagement" }, { - "Id": 1358, "Rank": 1, - "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1358, + "CommandName": "Set-PnPListItem" }, { - "Id": 1359, "Rank": 2, - "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1359, + "CommandName": "Set-PnPListItem" }, { - "Id": 1360, "Rank": 3, - "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1360, + "CommandName": "Set-PnPListItem" }, { - "Id": 1361, "Rank": 4, - "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Id": 1361, + "CommandName": "Set-PnPListItem" }, { - "Id": 1362, "Rank": 5, - "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Id": 1362, + "CommandName": "Set-PnPListItem" }, { - "Id": 1363, "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord", - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 1363, + "CommandName": "Set-PnPListItemAsRecord" }, { - "Id": 1364, "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord", - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Id": 1364, + "CommandName": "Set-PnPListItemAsRecord" }, { - "Id": 1365, "Rank": 1, - "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1365, + "CommandName": "Set-PnPListItemPermission" }, { - "Id": 1366, "Rank": 2, - "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1366, + "CommandName": "Set-PnPListItemPermission" }, { - "Id": 1367, "Rank": 3, - "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1367, + "CommandName": "Set-PnPListItemPermission" }, { - "Id": 1368, "Rank": 4, - "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Id": 1368, + "CommandName": "Set-PnPListItemPermission" }, { - "Id": 1369, "Rank": 5, - "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Id": 1369, + "CommandName": "Set-PnPListItemPermission" }, { - "Id": 1370, "Rank": 1, - "CommandName": "Set-PnPListPermission", - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1370, + "CommandName": "Set-PnPListPermission" }, { - "Id": 1371, "Rank": 2, - "CommandName": "Set-PnPListPermission", - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1371, + "CommandName": "Set-PnPListPermission" }, { - "Id": 1372, "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration", - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Id": 1372, + "CommandName": "Set-PnPListRecordDeclaration" }, { - "Id": 1373, "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration", - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Id": 1373, + "CommandName": "Set-PnPListRecordDeclaration" }, { - "Id": 1374, "Rank": 1, - "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1374, + "CommandName": "Set-PnPMasterPage" }, { - "Id": 1375, "Rank": 2, - "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1375, + "CommandName": "Set-PnPMasterPage" }, { - "Id": 1376, "Rank": 3, - "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1376, + "CommandName": "Set-PnPMasterPage" }, { - "Id": 1377, "Rank": 4, - "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1377, + "CommandName": "Set-PnPMasterPage" }, { - "Id": 1378, "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Id": 1378, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1379, "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1379, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1380, "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1380, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1381, "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Id": 1381, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1382, "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1382, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1383, "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1383, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1384, "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Id": 1384, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1385, "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1385, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1386, "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1386, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1387, "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Id": 1387, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1388, "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1388, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1389, "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1389, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1390, "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Id": 1390, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1391, "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Id": 1391, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1392, "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Command": "Set-PnPMessageCenterAnnouncementAsRead" + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1392, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1393, "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Id": 1393, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1394, "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Id": 1394, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1395, "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Command": "Set-PnPMessageCenterAnnouncementAsUnread" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1395, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1396, "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1396, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1397, "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1397, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1398, "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Id": 1398, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1399, "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Id": 1399, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1400, "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Id": 1400, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1401, "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 1401, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1402, "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Id": 1402, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "Id": 1403, "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Id": 1403, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "Id": 1404, "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Command": "Set-PnPMinimalDownloadStrategy -Off" + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Id": 1404, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "Id": 1405, "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Command": "Set-PnPMinimalDownloadStrategy -On" + "Command": "Set-PnPMinimalDownloadStrategy -On", + "Id": 1405, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "Id": 1406, "Rank": 1, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Id": 1406, + "CommandName": "Set-PnPPage" }, { - "Id": 1407, "Rank": 2, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Id": 1407, + "CommandName": "Set-PnPPage" }, { - "Id": 1408, "Rank": 3, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Id": 1408, + "CommandName": "Set-PnPPage" }, { - "Id": 1409, "Rank": 4, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Id": 1409, + "CommandName": "Set-PnPPage" }, { - "Id": 1410, "Rank": 5, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Id": 1410, + "CommandName": "Set-PnPPage" }, { - "Id": 1411, "Rank": 6, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "Id": 1411, + "CommandName": "Set-PnPPage" }, { - "Id": 1412, "Rank": 7, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 1412, + "CommandName": "Set-PnPPage" }, { - "Id": 1413, "Rank": 8, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Id": 1413, + "CommandName": "Set-PnPPage" }, { - "Id": 1414, "Rank": 9, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 1414, + "CommandName": "Set-PnPPage" }, { - "Id": 1415, "Rank": 10, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 1415, + "CommandName": "Set-PnPPage" }, { - "Id": 1416, "Rank": 11, - "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Id": 1416, + "CommandName": "Set-PnPPage" }, { - "Id": 1417, "Rank": 1, - "CommandName": "Set-PnPPageTextPart", - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Id": 1417, + "CommandName": "Set-PnPPageTextPart" }, { - "Id": 1418, "Rank": 1, - "CommandName": "Set-PnPPageWebPart", - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Id": 1418, + "CommandName": "Set-PnPPageWebPart" }, { - "Id": 1419, "Rank": 2, - "CommandName": "Set-PnPPageWebPart", - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Id": 1419, + "CommandName": "Set-PnPPageWebPart" }, { - "Id": 1420, "Rank": 1, - "CommandName": "Set-PnPPlannerBucket", - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Id": 1420, + "CommandName": "Set-PnPPlannerBucket" }, { - "Id": 1421, "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration", - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Id": 1421, + "CommandName": "Set-PnPPlannerConfiguration" }, { - "Id": 1422, "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration", - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Id": 1422, + "CommandName": "Set-PnPPlannerConfiguration" }, { - "Id": 1423, "Rank": 1, - "CommandName": "Set-PnPPlannerPlan", - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Id": 1423, + "CommandName": "Set-PnPPlannerPlan" }, { - "Id": 1424, "Rank": 1, - "CommandName": "Set-PnPPlannerTask", - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Id": 1424, + "CommandName": "Set-PnPPlannerTask" }, { - "Id": 1425, "Rank": 2, - "CommandName": "Set-PnPPlannerTask", - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Id": 1425, + "CommandName": "Set-PnPPlannerTask" }, { - "Id": 1426, "Rank": 3, - "CommandName": "Set-PnPPlannerTask", - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Id": 1426, + "CommandName": "Set-PnPPlannerTask" }, { - "Id": 1427, "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy", - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1427, + "CommandName": "Set-PnPPlannerUserPolicy" }, { - "Id": 1428, "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue", - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Id": 1428, + "CommandName": "Set-PnPPropertyBagValue" }, { - "Id": 1429, "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue", - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Id": 1429, + "CommandName": "Set-PnPPropertyBagValue" }, { - "Id": 1430, "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue", - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Id": 1430, + "CommandName": "Set-PnPPropertyBagValue" }, { - "Id": 1431, "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails", - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Id": 1431, + "CommandName": "Set-PnPRequestAccessEmails" }, { - "Id": 1432, "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails", - "Command": "Set-PnPRequestAccessEmails -Disabled" + "Command": "Set-PnPRequestAccessEmails -Disabled", + "Id": 1432, + "CommandName": "Set-PnPRequestAccessEmails" }, { - "Id": 1433, "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails", - "Command": "Set-PnPRequestAccessEmails -Disabled:$false" + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Id": 1433, + "CommandName": "Set-PnPRequestAccessEmails" }, { - "Id": 1434, "Rank": 1, - "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Id": 1434, + "CommandName": "Set-PnPRoleDefinition" }, { - "Id": 1435, "Rank": 2, - "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Id": 1435, + "CommandName": "Set-PnPRoleDefinition" }, { - "Id": 1436, "Rank": 3, - "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Id": 1436, + "CommandName": "Set-PnPRoleDefinition" }, { - "Id": 1437, "Rank": 4, - "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Id": 1437, + "CommandName": "Set-PnPRoleDefinition" }, { - "Id": 1438, "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Configuration $config" + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Id": 1438, + "CommandName": "Set-PnPSearchConfiguration" }, { - "Id": 1439, "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1439, + "CommandName": "Set-PnPSearchConfiguration" }, { - "Id": 1440, "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1440, + "CommandName": "Set-PnPSearchConfiguration" }, { - "Id": 1441, "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1441, + "CommandName": "Set-PnPSearchConfiguration" }, { - "Id": 1442, "Rank": 1, - "CommandName": "Set-PnPSearchExternalItem", - "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-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": 1442, + "CommandName": "Set-PnPSearchExternalItem" }, { - "Id": 1443, "Rank": 2, - "CommandName": "Set-PnPSearchExternalItem", - "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-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": 1443, + "CommandName": "Set-PnPSearchExternalItem" }, { - "Id": 1444, "Rank": 1, - "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Id": 1444, + "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1445, "Rank": 2, - "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Id": 1445, + "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1446, "Rank": 3, - "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Id": 1446, + "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1447, "Rank": 4, - "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Id": 1447, + "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1448, "Rank": 5, - "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Id": 1448, + "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1449, "Rank": 6, - "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchScope Tenant" + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Id": 1449, + "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1450, "Rank": 7, - "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchScope Hub" + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Id": 1450, + "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1451, "Rank": 1, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -Classification \"HBI\"" + "Command": "Set-PnPSite -Classification \"HBI\"", + "Id": 1451, + "CommandName": "Set-PnPSite" }, { - "Id": 1452, "Rank": 2, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -Classification $null" + "Command": "Set-PnPSite -Classification $null", + "Id": 1452, + "CommandName": "Set-PnPSite" }, { - "Id": 1453, "Rank": 3, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -DisableFlows" + "Command": "Set-PnPSite -DisableFlows", + "Id": 1453, + "CommandName": "Set-PnPSite" }, { - "Id": 1454, "Rank": 4, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -DisableFlows:$false" + "Command": "Set-PnPSite -DisableFlows:$false", + "Id": 1454, + "CommandName": "Set-PnPSite" }, { - "Id": 1455, "Rank": 5, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Id": 1455, + "CommandName": "Set-PnPSite" }, { - "Id": 1456, "Rank": 6, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -NoScriptSite $false" + "Command": "Set-PnPSite -NoScriptSite $false", + "Id": 1456, + "CommandName": "Set-PnPSite" }, { - "Id": 1457, "Rank": 7, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Id": 1457, + "CommandName": "Set-PnPSite" }, { - "Id": 1458, "Rank": 8, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Id": 1458, + "CommandName": "Set-PnPSite" }, { - "Id": 1459, "Rank": 9, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Id": 1459, + "CommandName": "Set-PnPSite" }, { - "Id": 1460, "Rank": 10, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Id": 1460, + "CommandName": "Set-PnPSite" }, { - "Id": 1461, "Rank": 11, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Id": 1461, + "CommandName": "Set-PnPSite" }, { - "Id": 1462, "Rank": 12, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Id": 1462, + "CommandName": "Set-PnPSite" }, { - "Id": 1463, "Rank": 13, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Id": 1463, + "CommandName": "Set-PnPSite" }, { - "Id": 1464, "Rank": 14, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Id": 1464, + "CommandName": "Set-PnPSite" }, { - "Id": 1465, "Rank": 15, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "Id": 1465, + "CommandName": "Set-PnPSite" }, { - "Id": 1466, "Rank": 16, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Id": 1466, + "CommandName": "Set-PnPSite" }, { - "Id": 1467, "Rank": 17, - "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -CancelVPForExistingLibs" + "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Id": 1467, + "CommandName": "Set-PnPSite" }, { - "Id": 1468, "Rank": 1, - "CommandName": "Set-PnPSiteClassification", - "Command": "Set-PnPSiteClassification -Identity \"LBI\"" + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Id": 1468, + "CommandName": "Set-PnPSiteClassification" }, { - "Id": 1469, "Rank": 1, - "CommandName": "Set-PnPSiteClosure", - "Command": "Set-PnPSiteClosure -State Open" + "Command": "Set-PnPSiteClosure -State Open", + "Id": 1469, + "CommandName": "Set-PnPSiteClosure" }, { - "Id": 1470, "Rank": 2, - "CommandName": "Set-PnPSiteClosure", - "Command": "Set-PnPSiteClosure -State Closed" + "Command": "Set-PnPSiteClosure -State Closed", + "Id": 1470, + "CommandName": "Set-PnPSiteClosure" }, { - "Id": 1471, "Rank": 1, - "CommandName": "Set-PnPSiteDesign", - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Id": 1471, + "CommandName": "Set-PnPSiteDesign" }, { - "Id": 1472, "Rank": 2, - "CommandName": "Set-PnPSiteDesign", - "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-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": 1472, + "CommandName": "Set-PnPSiteDesign" }, { - "Id": 1473, "Rank": 1, - "CommandName": "Set-PnPSiteGroup", - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "Id": 1473, + "CommandName": "Set-PnPSiteGroup" }, { - "Id": 1474, "Rank": 2, - "CommandName": "Set-PnPSiteGroup", - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Id": 1474, + "CommandName": "Set-PnPSiteGroup" }, { - "Id": 1475, "Rank": 1, - "CommandName": "Set-PnPSitePolicy", - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 1475, + "CommandName": "Set-PnPSitePolicy" }, { - "Id": 1476, "Rank": 1, - "CommandName": "Set-PnPSiteScript", - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1476, + "CommandName": "Set-PnPSiteScript" }, { - "Id": 1477, "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage", - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1477, + "CommandName": "Set-PnPSiteScriptPackage" }, { - "Id": 1478, "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel", - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Id": 1478, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "Id": 1479, "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel", - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Id": 1479, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "Id": 1480, "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1480, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1481, "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1481, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1482, "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1482, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1483, "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1483, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1484, "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1484, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1485, "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1485, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1486, "Rank": 1, - "CommandName": "Set-PnPStorageEntity", - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1486, + "CommandName": "Set-PnPStorageEntity" }, { - "Id": 1487, "Rank": 2, - "CommandName": "Set-PnPStorageEntity", - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1487, + "CommandName": "Set-PnPStorageEntity" }, { - "Id": 1488, "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1488, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "Id": 1489, "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1489, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "Id": 1490, "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1490, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "Id": 1491, "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1491, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "Id": 1492, "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Id": 1492, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "Id": 1493, "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Id": 1493, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "Id": 1494, "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Id": 1494, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Id": 1495, "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Id": 1495, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Id": 1496, "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Id": 1496, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Id": 1497, "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden", - "Command": "Set-PnPTeamifyPromptHidden" + "Command": "Set-PnPTeamifyPromptHidden", + "Id": 1497, + "CommandName": "Set-PnPTeamifyPromptHidden" }, { - "Id": 1498, "Rank": 1, - "CommandName": "Set-PnPTeamsChannel", - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Id": 1498, + "CommandName": "Set-PnPTeamsChannel" }, { - "Id": 1499, "Rank": 2, - "CommandName": "Set-PnPTeamsChannel", - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Id": 1499, + "CommandName": "Set-PnPTeamsChannel" }, { - "Id": 1500, "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser", - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "Id": 1500, + "CommandName": "Set-PnpTeamsChannelUser" }, { - "Id": 1501, "Rank": 2, - "CommandName": "Set-PnpTeamsChannelUser", - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Id": 1501, + "CommandName": "Set-PnpTeamsChannelUser" }, { - "Id": 1502, "Rank": 1, - "CommandName": "Set-PnPTeamsTab", - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Id": 1502, + "CommandName": "Set-PnPTeamsTab" }, { - "Id": 1503, "Rank": 1, - "CommandName": "Set-PnPTeamsTag", - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Id": 1503, + "CommandName": "Set-PnPTeamsTag" }, { - "Id": 1504, "Rank": 1, - "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Id": 1504, + "CommandName": "Set-PnPTeamsTeam" }, { - "Id": 1505, "Rank": 2, - "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Id": 1505, + "CommandName": "Set-PnPTeamsTeam" }, { - "Id": 1506, "Rank": 3, - "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Id": 1506, + "CommandName": "Set-PnPTeamsTeam" }, { - "Id": 1507, "Rank": 4, - "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Id": 1507, + "CommandName": "Set-PnPTeamsTeam" }, { - "Id": 1508, "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Id": 1508, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Id": 1509, "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Id": 1509, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Id": 1510, "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Id": 1510, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Id": 1511, "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture", - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Id": 1511, + "CommandName": "Set-PnPTeamsTeamPicture" }, { - "Id": 1512, "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Command": "Set-PnPTemporarilyDisableAppBar $true" + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Id": 1512, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "Id": 1513, "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Command": "Set-PnPTemporarilyDisableAppBar $false" + "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Id": 1513, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "Id": 1514, "Rank": 1, - "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", + "Id": 1514, + "CommandName": "Set-PnPTenant" }, { - "Id": 1515, "Rank": 2, - "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Id": 1515, + "CommandName": "Set-PnPTenant" }, { - "Id": 1516, "Rank": 3, - "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenant -ShowAllUsersClaim $false" + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Id": 1516, + "CommandName": "Set-PnPTenant" }, { - "Id": 1517, "Rank": 4, - "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Id": 1517, + "CommandName": "Set-PnPTenant" }, { - "Id": 1518, "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl", - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Id": 1518, + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { - "Id": 1519, "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled", - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Id": 1519, + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Id": 1520, "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled", - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Id": 1520, + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Id": 1521, "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled", - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Id": 1521, + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Id": 1522, "Rank": 1, - "CommandName": "Set-PnPTenantCdnPolicy", - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", + "Id": 1522, + "CommandName": "Set-PnPTenantCdnPolicy" }, { - "Id": 1523, "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy", - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Id": 1523, + "CommandName": "Set-PnPTenantCdnPolicy" }, { - "Id": 1524, "Rank": 1, - "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Id": 1524, + "CommandName": "Set-PnPTenantSite" }, { - "Id": 1525, "Rank": 2, - "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Id": 1525, + "CommandName": "Set-PnPTenantSite" }, { - "Id": 1526, "Rank": 3, - "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1526, + "CommandName": "Set-PnPTenantSite" }, { - "Id": 1527, "Rank": 4, - "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1527, + "CommandName": "Set-PnPTenantSite" }, { - "Id": 1528, "Rank": 5, - "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Id": 1528, + "CommandName": "Set-PnPTenantSite" }, { - "Id": 1529, "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Id": 1529, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "Id": 1530, "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Id": 1530, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "Id": 1531, "Rank": 1, - "CommandName": "Set-PnPTerm", - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Id": 1531, + "CommandName": "Set-PnPTerm" }, { - "Id": 1532, "Rank": 2, - "CommandName": "Set-PnPTerm", - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1532, + "CommandName": "Set-PnPTerm" }, { - "Id": 1533, "Rank": 3, - "CommandName": "Set-PnPTerm", - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1533, + "CommandName": "Set-PnPTerm" }, { - "Id": 1534, "Rank": 4, - "CommandName": "Set-PnPTerm", - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Id": 1534, + "CommandName": "Set-PnPTerm" }, { - "Id": 1535, "Rank": 1, - "CommandName": "Set-PnPTermGroup", - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Id": 1535, + "CommandName": "Set-PnPTermGroup" }, { - "Id": 1536, "Rank": 1, - "CommandName": "Set-PnPTermSet", - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Id": 1536, + "CommandName": "Set-PnPTermSet" }, { - "Id": 1537, "Rank": 2, - "CommandName": "Set-PnPTermSet", - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Id": 1537, + "CommandName": "Set-PnPTermSet" }, { - "Id": 1538, "Rank": 3, - "CommandName": "Set-PnPTermSet", - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Id": 1538, + "CommandName": "Set-PnPTermSet" }, { - "Id": 1539, "Rank": 1, - "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme" + "Command": "Set-PnPTheme", + "Id": 1539, + "CommandName": "Set-PnPTheme" }, { - "Id": 1540, "Rank": 2, - "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Id": 1540, + "CommandName": "Set-PnPTheme" }, { - "Id": 1541, "Rank": 3, - "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Id": 1541, + "CommandName": "Set-PnPTheme" }, { - "Id": 1542, "Rank": 4, - "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Id": 1542, + "CommandName": "Set-PnPTheme" }, { - "Id": 1543, "Rank": 1, - "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Id": 1543, + "CommandName": "Set-PnPTraceLog" }, { - "Id": 1544, "Rank": 2, - "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Id": 1544, + "CommandName": "Set-PnPTraceLog" }, { - "Id": 1545, "Rank": 3, - "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Id": 1545, + "CommandName": "Set-PnPTraceLog" }, { - "Id": 1546, "Rank": 4, - "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -Off" + "Command": "Set-PnPTraceLog -Off", + "Id": 1546, + "CommandName": "Set-PnPTraceLog" }, { - "Id": 1547, "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota", - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Id": 1547, + "CommandName": "Set-PnPUserOneDriveQuota" }, { - "Id": 1548, "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty", - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Id": 1548, + "CommandName": "Set-PnPUserProfileProperty" }, { - "Id": 1549, "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty", - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Id": 1549, + "CommandName": "Set-PnPUserProfileProperty" }, { - "Id": 1550, "Rank": 1, - "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Id": 1550, + "CommandName": "Set-PnPView" }, { - "Id": 1551, "Rank": 2, - "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Id": 1551, + "CommandName": "Set-PnPView" }, { - "Id": 1552, "Rank": 3, - "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", + "Id": 1552, + "CommandName": "Set-PnPView" }, { - "Id": 1553, "Rank": 4, - "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Id": 1553, + "CommandName": "Set-PnPView" }, { - "Id": 1554, "Rank": 1, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "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-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": 1554, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Id": 1555, "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Id": 1555, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Id": 1556, "Rank": 3, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "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-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": 1556, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Id": 1557, "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Id": 1557, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Id": 1558, "Rank": 1, - "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Id": 1558, + "CommandName": "Set-PnPWeb" }, { - "Id": 1559, "Rank": 2, - "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Id": 1559, + "CommandName": "Set-PnPWeb" }, { - "Id": 1560, "Rank": 3, - "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Id": 1560, + "CommandName": "Set-PnPWeb" }, { - "Id": 1561, "Rank": 4, - "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -NoCrawl:$true" + "Command": "Set-PnPWeb -NoCrawl:$true", + "Id": 1561, + "CommandName": "Set-PnPWeb" }, { - "Id": 1562, "Rank": 1, - "CommandName": "Set-PnPWebHeader", - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Id": 1562, + "CommandName": "Set-PnPWebHeader" }, { - "Id": 1563, "Rank": 2, - "CommandName": "Set-PnPWebHeader", - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Id": 1563, + "CommandName": "Set-PnPWebHeader" }, { - "Id": 1564, "Rank": 3, - "CommandName": "Set-PnPWebHeader", - "Command": "Set-PnPWebHeader -LogoAlignment Middle" + "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Id": 1564, + "CommandName": "Set-PnPWebHeader" }, { - "Id": 1565, "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription", - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 1565, + "CommandName": "Set-PnPWebhookSubscription" }, { - "Id": 1566, "Rank": 2, - "CommandName": "Set-PnPWebhookSubscription", - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Id": 1566, + "CommandName": "Set-PnPWebhookSubscription" }, { - "Id": 1567, "Rank": 1, - "CommandName": "Set-PnPWebPartProperty", - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", + "Id": 1567, + "CommandName": "Set-PnPWebPartProperty" }, { - "Id": 1568, "Rank": 1, - "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1568, + "CommandName": "Set-PnPWebPermission" }, { - "Id": 1569, "Rank": 2, - "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Id": 1569, + "CommandName": "Set-PnPWebPermission" }, { - "Id": 1570, "Rank": 3, - "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1570, + "CommandName": "Set-PnPWebPermission" }, { - "Id": 1571, "Rank": 4, - "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Id": 1571, + "CommandName": "Set-PnPWebPermission" }, { - "Id": 1572, "Rank": 1, - "CommandName": "Set-PnPWebTheme", - "Command": "Set-PnPWebTheme -Theme MyTheme" + "Command": "Set-PnPWebTheme -Theme MyTheme", + "Id": 1572, + "CommandName": "Set-PnPWebTheme" }, { - "Id": 1573, "Rank": 2, - "CommandName": "Set-PnPWebTheme", - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Id": 1573, + "CommandName": "Set-PnPWebTheme" }, { - "Id": 1574, "Rank": 1, - "CommandName": "Set-PnPWikiPageContent", - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Id": 1574, + "CommandName": "Set-PnPWikiPageContent" }, { - "Id": 1575, "Rank": 1, - "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"finance\"" + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Id": 1575, + "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1576, "Rank": 2, - "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Id": 1576, + "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1577, "Rank": 3, - "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Id": 1577, + "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1578, "Rank": 4, - "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Id": 1578, + "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1579, "Rank": 5, - "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Id": 1579, + "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1580, "Rank": 6, - "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "Id": 1580, + "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1581, "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage", - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Id": 1581, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "Id": 1582, "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage", - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html" + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html", + "Id": 1582, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "Id": 1583, "Rank": 1, - "CommandName": "Sync-PnPAppToTeams", - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1583, + "CommandName": "Sync-PnPAppToTeams" }, { - "Id": 1584, "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Id": 1584, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Id": 1585, "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Id": 1585, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Id": 1586, "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Id": 1586, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Id": 1587, "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord", - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Id": 1587, + "CommandName": "Test-PnPListItemIsRecord" }, { - "Id": 1588, "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Id": 1588, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { - "Id": 1589, "Rank": 1, - "CommandName": "Test-PnPSite", - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1589, + "CommandName": "Test-PnPSite" }, { - "Id": 1590, "Rank": 2, - "CommandName": "Test-PnPSite", - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1590, + "CommandName": "Test-PnPSite" }, { - "Id": 1591, "Rank": 1, - "CommandName": "Test-PnPTenantTemplate", - "Command": "Test-PnPTenantTemplate -Template $myTemplate" + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Id": 1591, + "CommandName": "Test-PnPTenantTemplate" }, { - "Id": 1592, "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut", - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Id": 1592, + "CommandName": "Undo-PnPFileCheckedOut" }, { - "Id": 1593, "Rank": 1, - "CommandName": "Uninstall-PnPApp", - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1593, + "CommandName": "Uninstall-PnPApp" }, { - "Id": 1594, "Rank": 2, - "CommandName": "Uninstall-PnPApp", - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1594, + "CommandName": "Uninstall-PnPApp" }, { - "Id": 1595, "Rank": 1, - "CommandName": "Unpublish-PnPApp", - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1595, + "CommandName": "Unpublish-PnPApp" }, { - "Id": 1596, "Rank": 2, - "CommandName": "Unpublish-PnPApp", - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1596, + "CommandName": "Unpublish-PnPApp" }, { - "Id": 1597, "Rank": 1, - "CommandName": "Unpublish-PnPContentType", - "Command": "Unpublish-PnPContentType -ContentType 0x0101" + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Id": 1597, + "CommandName": "Unpublish-PnPContentType" }, { - "Id": 1598, "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel", - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 1598, + "CommandName": "Unpublish-PnPSyntexModel" }, { - "Id": 1599, "Rank": 2, - "CommandName": "Unpublish-PnPSyntexModel", - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 1599, + "CommandName": "Unpublish-PnPSyntexModel" }, { - "Id": 1600, "Rank": 1, - "CommandName": "Unregister-PnPHubSite", - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1600, + "CommandName": "Unregister-PnPHubSite" }, { - "Id": 1601, "Rank": 1, - "CommandName": "Update-PnPApp", - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1601, + "CommandName": "Update-PnPApp" }, { - "Id": 1602, "Rank": 2, - "CommandName": "Update-PnPApp", - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1602, + "CommandName": "Update-PnPApp" }, { - "Id": 1603, "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification", - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1603, + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Id": 1604, "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification", - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Id": 1604, + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Id": 1605, "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification", - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 1605, + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Id": 1606, "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Id": 1606, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Id": 1607, "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Id": 1607, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Id": 1608, "Rank": 3, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Id": 1608, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Id": 1609, "Rank": 1, - "CommandName": "Update-PnPTeamsApp", - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Id": 1609, + "CommandName": "Update-PnPTeamsApp" }, { - "Id": 1610, "Rank": 1, - "CommandName": "Update-PnPTeamsUser", - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1610, + "CommandName": "Update-PnPTeamsUser" }, { - "Id": 1611, "Rank": 2, - "CommandName": "Update-PnPTeamsUser", - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 1611, + "CommandName": "Update-PnPTeamsUser" }, { - "Id": 1612, "Rank": 3, - "CommandName": "Update-PnPTeamsUser", - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Id": 1612, + "CommandName": "Update-PnPTeamsUser" }, { - "Id": 1613, "Rank": 1, - "CommandName": "Update-PnPUserType", - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Id": 1613, + "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index 47ccbfaa1..9f8a1f240 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.29 \ No newline at end of file +2.3.30 \ No newline at end of file From 63ed43625d4af1cde9ea18e5d1e5301455730c74 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 16:44:52 +0200 Subject: [PATCH 06/53] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 944cf6540..c4865c1a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,9 +23,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `Get-PnPTeamsChannelMessageReply` cmdlet which didn't work correctly when `-IncludeDeleted` parameter was not specified. [#3676](https://github.com/pnp/powershell/pull/3676) - Fixed `Add-PnPNavigationNode` cmdlet to also search for nodes in child navigation items. [#3625](https://github.com/pnp/powershell/pull/3625) - Fixed `Get-PnPFlow` cmdlet to use the newer Flow URLs instead of the old ARM URLs. [#3677](https://github.com/pnp/powershell/pull/3677) +- Fixed `Get-PnPPowerPlatformConnector`, `Get-PnPPowerPlatformEnvironment`, `Get-PnPPowerApp`, `Add-PnPFlowOwner`, `Disable-PnPFlow`, `Enable-PnPFlow`, `Export-PnPFlow`, `Get-PnPFlowOwner`, `Get-PnPFlowRun`, `Remove-PnPFlow`, `Remove-PnPFlowOwner` , `Restart-PnPFlow` and `Stop-PnPFlowRun` cmdlets to use the new HTTP endpoints. [#3687](https://github.com/pnp/powershell/pull/3687) ### Contributors +- Kunj Balkrishna Sangani [kunj-sangani] - Koen Zomers [koenzomers] - Reshmee Auckloo [reshme011] - Nishkalank Bezawada [NishkalankBezawada] From f71a9861f6d03d2bed01d5a4a37fc56a17bc432c Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 17:02:28 +0200 Subject: [PATCH 07/53] Remove Tests project --- src/PnP.PowerShell.sln | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/PnP.PowerShell.sln b/src/PnP.PowerShell.sln index 403278f28..dcbdf9907 100644 --- a/src/PnP.PowerShell.sln +++ b/src/PnP.PowerShell.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.4.33213.308 @@ -7,8 +7,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PnP.PowerShell", "Commands\ EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PnP.PowerShell.ALC", "ALC\PnP.PowerShell.ALC.csproj", "{546A8F8C-AD8A-488D-98DB-5AB25CF9558B}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PnP.PowerShell.Tests", "Tests\PnP.PowerShell.Tests.csproj", "{5B479E2D-67D3-4B12-9562-03D4D30B8BF9}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -28,12 +26,6 @@ Global {546A8F8C-AD8A-488D-98DB-5AB25CF9558B}.DebugLocal|Any CPU.Build.0 = DebugLocal|Any CPU {546A8F8C-AD8A-488D-98DB-5AB25CF9558B}.Release|Any CPU.ActiveCfg = Release|Any CPU {546A8F8C-AD8A-488D-98DB-5AB25CF9558B}.Release|Any CPU.Build.0 = Release|Any CPU - {5B479E2D-67D3-4B12-9562-03D4D30B8BF9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5B479E2D-67D3-4B12-9562-03D4D30B8BF9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5B479E2D-67D3-4B12-9562-03D4D30B8BF9}.DebugLocal|Any CPU.ActiveCfg = DebugLocal|Any CPU - {5B479E2D-67D3-4B12-9562-03D4D30B8BF9}.DebugLocal|Any CPU.Build.0 = DebugLocal|Any CPU - {5B479E2D-67D3-4B12-9562-03D4D30B8BF9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5B479E2D-67D3-4B12-9562-03D4D30B8BF9}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE From 1ff4fcd4c0a2726c7caed060ff022c0de43c30e5 Mon Sep 17 00:00:00 2001 From: Konrad K <wile.genius@gmail.com> Date: Fri, 19 Jan 2024 16:16:10 +0100 Subject: [PATCH 08/53] Add Information Barriers related settings to Get/Set-Tenant (#3679) * Add AppBypassInformationBarriers and DefaultOneDriveInformationBarrierMode to Set-PnPTenant Add ShowPeoplePickerGroupSuggestionsForIB, InformationBarriersSuspension, IBImplicitGroupBased, AppBypassInformationBarriers, DefaultOneDriveInformationBarrierMode to Get-PnPTenant * Re-Trigger checks --------- Co-authored-by: Gautam Sheth <gautamdsheth@outlook.com> --- documentation/Set-PnPTenant.md | 39 ++++++++++++++++++++++++ src/Commands/Admin/SetTenant.cs | 19 ++++++++++++ src/Commands/Model/SPOTenant.cs | 53 +++++++++++++++++++++++++++++++++ 3 files changed, 111 insertions(+) diff --git a/documentation/Set-PnPTenant.md b/documentation/Set-PnPTenant.md index ad17f73f2..3e4c3ca1b 100644 --- a/documentation/Set-PnPTenant.md +++ b/documentation/Set-PnPTenant.md @@ -2331,6 +2331,45 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -AppBypassInformationBarriers +Enables of disables applications running in app-only mode to access IB sites. + +For more information about information barriers, see [Use information barriers with SharePoint](https://learn.microsoft.com/en-us/purview/information-barriers-sharepoint) for your SharePoint Online environment. + +```yaml +Type: Boolean +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultOneDriveInformationBarrierMode +The DefaultOneDriveInformationBarrierMode sets the information barrier mode for all OneDrive sites. + +The valid values are: + +- Open +- Explicit +- Implicit +- OwnerModerated +- Mixed +For more information about information barriers, see [Use information barriers with SharePoint](https://learn.microsoft.com/en-us/purview/information-barriers-sharepoint) for your SharePoint Online environment. + +```yaml +Type: InformationBarriersMode +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Force If provided, no confirmation will be requested and the action will be performed diff --git a/src/Commands/Admin/SetTenant.cs b/src/Commands/Admin/SetTenant.cs index b33ff3105..50ba158bd 100644 --- a/src/Commands/Admin/SetTenant.cs +++ b/src/Commands/Admin/SetTenant.cs @@ -8,6 +8,7 @@ using Microsoft.SharePoint.Client.Sharing; using Microsoft.SharePoint.Client.Administration; using System.Linq; +using InformationBarriersMode = PnP.PowerShell.Commands.Enums.InformationBarriersMode; namespace PnP.PowerShell.Commands.Admin { @@ -410,6 +411,12 @@ public class SetTenant : PnPAdminCmdlet [Parameter(Mandatory = false)] public bool? IsDataAccessInCardDesignerEnabled { get; set; } + [Parameter(Mandatory = false)] + public bool? AppBypassInformationBarriers { get; set;} + + [Parameter(Mandatory = false)] + public InformationBarriersMode? DefaultOneDriveInformationBarrierMode { get; set;} + protected override void ExecuteCmdlet() { AdminContext.Load(Tenant); @@ -1362,6 +1369,18 @@ protected override void ExecuteCmdlet() modified = true; } + if (AppBypassInformationBarriers.HasValue) + { + Tenant.AppBypassInformationBarriers = AppBypassInformationBarriers.Value; + modified = true; + } + + if (DefaultOneDriveInformationBarrierMode.HasValue) + { + Tenant.DefaultODBMode = DefaultOneDriveInformationBarrierMode.Value.ToString(); + modified = true; + } + if (BlockDownloadFileTypePolicy.HasValue) { if (!BlockDownloadFileTypePolicy.Value) diff --git a/src/Commands/Model/SPOTenant.cs b/src/Commands/Model/SPOTenant.cs index 92170f6dc..55d417274 100644 --- a/src/Commands/Model/SPOTenant.cs +++ b/src/Commands/Model/SPOTenant.cs @@ -4,6 +4,7 @@ using System; using System.Collections.Generic; using System.Linq; +using InformationBarriersMode = PnP.PowerShell.Commands.Enums.InformationBarriersMode; namespace PnP.PowerShell.Commands.Model { @@ -185,6 +186,15 @@ public class SPOTenant public bool? IsDataAccessInCardDesignerEnabled { private set; get; } + public bool? ShowPeoplePickerGroupSuggestionsForIB { private set; get; } + + public bool? InformationBarriersSuspension { private set; get; } + + public bool? IBImplicitGroupBased { private set; get; } + public bool? AppBypassInformationBarriers { private set; get; } + + public InformationBarriersMode? DefaultOneDriveInformationBarrierMode { private set; get; } + #endregion public SPOTenant(Tenant tenant, ClientContext clientContext) @@ -656,6 +666,49 @@ public SPOTenant(Tenant tenant, ClientContext clientContext) { EnableSensitivityLabelForPDF = false; } + + try + { + ShowPeoplePickerGroupSuggestionsForIB = tenant.ShowPeoplePickerGroupSuggestionsForIB; + } + catch + { + } + + try + { + InformationBarriersSuspension = tenant.InformationBarriersSuspension; + } + catch + { + } + + try + { + IBImplicitGroupBased = tenant.IBImplicitGroupBased; + } + catch + { + } + + try + { + AppBypassInformationBarriers = tenant.AppBypassInformationBarriers; + } + catch + { + } + + try + { + if (tenant.DefaultODBMode != null) + { + DefaultOneDriveInformationBarrierMode = Enum.Parse<InformationBarriersMode>(tenant.DefaultODBMode); + } + } + catch + { + } } } } From 083de6838d7bf3eef465a4ef3c9720230b0a8b69 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 17:17:55 +0200 Subject: [PATCH 09/53] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4865c1a6..48ccad069 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Merge-PnPTerm` cmdlet which allows merging of one term into another. [#3638](https://github.com/pnp/powershell/pull/3638) - Added `Get-PnPDeletedContainer` cmdlet which returns a list of all deleted Containers in the recycle bin. [#3648](https://github.com/pnp/powershell/pull/3648) - Added `Get-PnPContainerTypeConfiguration` cmdlet which fetches the container type configuration values. [#3660](https://github.com/pnp/powershell/pull/3660) +- Added `-AppBypassInformationBarriers` and `-DefaultOneDriveInformationBarrierMode` parameters to `Set-PnPTenant` cmdlet. [#3679](https://github.com/pnp/powershell/pull/3679) ### Fixed @@ -27,6 +28,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Contributors +- Konrad K. [wilecoyotegenius] - Kunj Balkrishna Sangani [kunj-sangani] - Koen Zomers [koenzomers] - Reshmee Auckloo [reshme011] From 451a3c6eee19bccd9e8e883e0d208ead0c80ff43 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 20:58:41 +0530 Subject: [PATCH 10/53] Feature #3612 - Added Batch parameter to Add-PnPGroupMember cmdlet (#3651) * Feature #3612 - Added Batch parameter to Add-PnPGroupMember cmdlet * Update CHANGELOG.md --------- Co-authored-by: Gautam Sheth <gautam.sheth@staffbase.com> --- CHANGELOG.md | 1 + documentation/Add-PnPGroupMember.md | 29 +++++++++++++++++++++++ src/Commands/Principals/AddGroupMember.cs | 17 ++++++++++++- 3 files changed, 46 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48ccad069..146262433 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Convert-PnPFile` cmdlet which allows for a file to be converted to from one format to another. [#3435](https://github.com/pnp/powershell/pull/3435) & [#3643](https://github.com/pnp/powershell/pull/3643) - Added `Merge-PnPTerm` cmdlet which allows merging of one term into another. [#3638](https://github.com/pnp/powershell/pull/3638) - Added `Get-PnPDeletedContainer` cmdlet which returns a list of all deleted Containers in the recycle bin. [#3648](https://github.com/pnp/powershell/pull/3648) +- Added `-Batch` parameter to `Add-PnPGroupMember` cmdlet which allows adding members to a SharePoint group in a batch. [#3651](https://github.com/pnp/powershell/pull/3651)======= - Added `Get-PnPContainerTypeConfiguration` cmdlet which fetches the container type configuration values. [#3660](https://github.com/pnp/powershell/pull/3660) - Added `-AppBypassInformationBarriers` and `-DefaultOneDriveInformationBarrierMode` parameters to `Set-PnPTenant` cmdlet. [#3679](https://github.com/pnp/powershell/pull/3679) diff --git a/documentation/Add-PnPGroupMember.md b/documentation/Add-PnPGroupMember.md index ad8bba906..345e35405 100644 --- a/documentation/Add-PnPGroupMember.md +++ b/documentation/Add-PnPGroupMember.md @@ -26,6 +26,12 @@ Add-PnPGroupMember -Group <GroupPipeBind> -EmailAddress <String> [-SendEmail] [- [-Connection <PnPConnection>] ``` +### Batched +```powershell +Add-PnPGroupMember -LoginName <String> -Group <GroupPipeBind> + [-Connection <PnPConnection>] -Batch <PnPBatch> +``` + ## DESCRIPTION Allows to add new user to SharePoint group. The SharePoint group may be specified either by id, name or related object. @@ -46,6 +52,16 @@ Add-PnPGroupMember -LoginName user@company.com -Group 5 Add the specified user to the SharePoint group with Id 5 +### EXAMPLE 3 +```powershell +$batch = New-PnPBatch +Add-PnPGroupMember -LoginName user@company.com -Group 5 -Batch $batch +Add-PnPGroupMember -LoginName user1@company.com -Group 5 -Batch $batch +Invoke-PnPBatch $batch +``` + +Add the specified users to the SharePoint group with Id 5 in a batch. + ## PARAMETERS ### -Connection @@ -130,6 +146,19 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Batch + +```yaml +Type: PnPBatch +Parameter Sets: Batched + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ## RELATED LINKS diff --git a/src/Commands/Principals/AddGroupMember.cs b/src/Commands/Principals/AddGroupMember.cs index 8cf05ccba..6e00ecd1d 100644 --- a/src/Commands/Principals/AddGroupMember.cs +++ b/src/Commands/Principals/AddGroupMember.cs @@ -1,6 +1,7 @@ using System.Management.Automation; using Microsoft.SharePoint.Client; using PnP.PowerShell.Commands.Base.PipeBinds; +using PnP.PowerShell.Commands.Model; namespace PnP.PowerShell.Commands.Principals { @@ -10,12 +11,15 @@ public class AddGroupMember : PnPWebCmdlet { private const string ParameterSet_INTERNAL = "Internal"; private const string ParameterSet_EXTERNAL = "External"; + private const string ParameterSet_BATCHED = "Batched"; [Parameter(Mandatory = true, ParameterSetName = ParameterSet_INTERNAL)] + [Parameter(Mandatory = true, ParameterSetName = ParameterSet_BATCHED)] public string LoginName; [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = ParameterSet_INTERNAL)] [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = ParameterSet_EXTERNAL)] + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = ParameterSet_BATCHED)] [Alias("Identity")] public GroupPipeBind Group; @@ -28,6 +32,9 @@ public class AddGroupMember : PnPWebCmdlet [Parameter(Mandatory = false, ParameterSetName = ParameterSet_EXTERNAL)] public string EmailBody = "Site shared with you."; + [Parameter(Mandatory = true, ParameterSetName = ParameterSet_BATCHED)] + public PnPBatch Batch; + protected override void ExecuteCmdlet() { if (ParameterSetName == ParameterSet_EXTERNAL) @@ -39,7 +46,15 @@ protected override void ExecuteCmdlet() { var group = Group.GetGroup(PnPContext); var user = PnPContext.Web.EnsureUser(LoginName); - group.AddUser(user.LoginName); + + if (ParameterSetName == ParameterSet_BATCHED) + { + group.AddUserBatch(Batch.Batch, user.LoginName); + } + else + { + group.AddUser(user.LoginName); + } } } } From 5c7a5f2c94f6cf228592787f3fe31489bf6e5c3c Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 17:29:20 +0200 Subject: [PATCH 11/53] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 146262433..a30cf1471 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Convert-PnPFile` cmdlet which allows for a file to be converted to from one format to another. [#3435](https://github.com/pnp/powershell/pull/3435) & [#3643](https://github.com/pnp/powershell/pull/3643) - Added `Merge-PnPTerm` cmdlet which allows merging of one term into another. [#3638](https://github.com/pnp/powershell/pull/3638) - Added `Get-PnPDeletedContainer` cmdlet which returns a list of all deleted Containers in the recycle bin. [#3648](https://github.com/pnp/powershell/pull/3648) -- Added `-Batch` parameter to `Add-PnPGroupMember` cmdlet which allows adding members to a SharePoint group in a batch. [#3651](https://github.com/pnp/powershell/pull/3651)======= +- Added `-Batch` parameter to `Add-PnPGroupMember` cmdlet which allows adding members to a SharePoint group in a batch. [#3651](https://github.com/pnp/powershell/pull/3651) - Added `Get-PnPContainerTypeConfiguration` cmdlet which fetches the container type configuration values. [#3660](https://github.com/pnp/powershell/pull/3660) - Added `-AppBypassInformationBarriers` and `-DefaultOneDriveInformationBarrierMode` parameters to `Set-PnPTenant` cmdlet. [#3679](https://github.com/pnp/powershell/pull/3679) From c9f222e4e999d7be19bde55d25d7a0149cc1a637 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 21:26:28 +0530 Subject: [PATCH 12/53] Feature #1661 - allow batch removal of fields capability (#3655) Co-authored-by: Gautam Sheth <gautam.sheth@staffbase.com> --- documentation/Remove-PnPField.md | 27 +++++++++ src/Commands/Fields/RemoveField.cs | 93 +++++++++++++++++++++++++++++- 2 files changed, 117 insertions(+), 3 deletions(-) diff --git a/documentation/Remove-PnPField.md b/documentation/Remove-PnPField.md index 83ac59231..8edfbaae0 100644 --- a/documentation/Remove-PnPField.md +++ b/documentation/Remove-PnPField.md @@ -38,6 +38,18 @@ Remove-PnPField -List "Demo list" -Identity "Speakers" Removes the speakers field from the list "Demo list". +### EXAMPLE 3 +```powershell +$batch = New-PnPBatch +Remove-PnPField -List "Demo list" -Identity "Speakers" -Batch $batch +Remove-PnPField -List "Demo list" -Identity "Sponsors" -Batch $batch +Remove-PnPField -List "Demo list" -Identity "Organizers" -Batch $batch +Remove-PnPField -Identity "Test" -Batch $batch +Invoke-PnPBatch $batch +``` + +Removes the speakers, sponsors and organizers fields from the list "Demo list" as well as Test field from the web in a batch. + ## PARAMETERS ### -Connection @@ -96,6 +108,21 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -Batch + +Batch object used to remove fields in a batched manner. See above example on how to use this. + +```yaml +Type: PnPBatch +Parameter Sets: (All) + +Required: False +Position: named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ## RELATED LINKS [Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) diff --git a/src/Commands/Fields/RemoveField.cs b/src/Commands/Fields/RemoveField.cs index e95ece772..9c84a4c20 100644 --- a/src/Commands/Fields/RemoveField.cs +++ b/src/Commands/Fields/RemoveField.cs @@ -1,8 +1,11 @@ using System; +using System.Linq; using System.Management.Automation; using Microsoft.SharePoint.Client; - +using PnP.Core.Model.SharePoint; +using PnP.Core.QueryModel; using PnP.PowerShell.Commands.Base.PipeBinds; +using PnP.PowerShell.Commands.Model; namespace PnP.PowerShell.Commands.Fields { @@ -19,7 +22,92 @@ public class RemoveField : PnPWebCmdlet [Parameter(Mandatory = false)] public SwitchParameter Force; + [Parameter(Mandatory = false)] + public PnPBatch Batch; + protected override void ExecuteCmdlet() + { + if (ParameterSpecified(nameof(Batch))) + { + RemoveFieldBatch(); + } + else + { + RemoveSingleField(); + } + } + + private void RemoveFieldBatch() + { + if (List != null) + { + var list = List.GetList(PnPContext); + list.EnsureProperties(l => l.Fields); + var fieldCollection = list.Fields.AsRequested(); + var f = Identity.Field; + IField pnpField = null; + + if (list != null) + { + if (f == null) + { + if (Identity.Id != Guid.Empty) + { + pnpField = fieldCollection.Where(fi => fi.Id == Identity.Id).FirstOrDefault(); + } + else if (!string.IsNullOrEmpty(Identity.Name)) + { + pnpField = fieldCollection.Where(fi => fi.InternalName == Identity.Name).FirstOrDefault(); + if (pnpField == null) + { + pnpField = fieldCollection.Where(fi => fi.Title == Identity.Name).FirstOrDefault(); + } + } + + if (pnpField != null) + { + if (Force || ShouldContinue(string.Format(Properties.Resources.DeleteField0, pnpField.InternalName), Properties.Resources.Confirm)) + { + pnpField.DeleteBatch(Batch.Batch); + } + } + } + } + } + else + { + var f = Identity.Field; + PnPContext.Web.EnsureProperties(w => w.Fields); + var fieldCollection = PnPContext.Web.Fields.AsRequested(); + IField pnpField = null; + if (f == null) + { + if (Identity.Id != Guid.Empty) + { + pnpField = fieldCollection.Where(fi => fi.Id == Identity.Id).FirstOrDefault(); + } + else if (!string.IsNullOrEmpty(Identity.Name)) + { + pnpField = fieldCollection.Where(fi => fi.InternalName == Identity.Name).FirstOrDefault(); + + if (pnpField == null) + { + pnpField = fieldCollection.Where(fi => fi.Title == Identity.Name).FirstOrDefault(); + } + } + + if (pnpField != null) + { + if (Force || ShouldContinue(string.Format(Properties.Resources.DeleteField0, pnpField.InternalName), Properties.Resources.Confirm)) + { + pnpField.DeleteBatch(Batch.Batch); + } + } + } + } + } + + private void RemoveSingleField() { if (List != null) { @@ -50,7 +138,7 @@ protected override void ExecuteCmdlet() } } } - } + } else { var f = Identity.Field; @@ -80,5 +168,4 @@ protected override void ExecuteCmdlet() } } } - } From b6e6475c070d4fbd18fa49f05fc46322a8f1ea06 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 21:36:03 +0530 Subject: [PATCH 13/53] Fix #1911: Add-PnPHubSiteAssociation cmdlet to support (#3568) * Fix #1911: Add-PnPHubSiteAssociation cmdlet to support multi-geo scenario * Update CHANGELOG.md --------- Co-authored-by: Gautam Sheth <gautam.sheth@staffbase.com> Co-authored-by: Koen Zomers <koen@zomers.eu> --- CHANGELOG.md | 1 + src/Commands/Admin/AddHubSiteAssociation.cs | 32 +++++++++++++++++++-- 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a30cf1471..840dde0bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -111,6 +111,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed an issue when trying to download a file using `Get-PnPFile` from a location that's deeply nested into folders and/or has a really long filename [PnP Core #1290](https://github.com/pnp/pnpcore/pull/1290) - Fixed retrieving error detail in `Get-UPABulkImportStatus` cmdlet. [#3494](https://github.com/pnp/powershell/pull/3494) - Fixed `Rename-PnPTenantSite` cmdlet to allow support for vanity tenant URLs. [#3533](https://github.com/pnp/powershell/pull/3533) +- Fixed `Add-PnPHubSiteAssociation` cmdlet to allow support for multi-geo scenario. [#3568](https://github.com/pnp/powershell/pull/3568) - Fixed `Get-PnPAzureADUser`, `Get-PnPEntraIDUser`, `Add-PnPFlowOwner` and `Remove-PnPFlowOwner` not working when an UPN containing an apostrophe was passed in [#3570](https://github.com/pnp/powershell/pull/3570) ### Changed diff --git a/src/Commands/Admin/AddHubSiteAssociation.cs b/src/Commands/Admin/AddHubSiteAssociation.cs index 5858f0b11..16f5b9786 100644 --- a/src/Commands/Admin/AddHubSiteAssociation.cs +++ b/src/Commands/Admin/AddHubSiteAssociation.cs @@ -3,6 +3,8 @@ using PnP.PowerShell.Commands.Base; using System.Management.Automation; using PnP.PowerShell.Commands.Base.PipeBinds; +using PnP.Core.Model; +using System; namespace PnP.PowerShell.Commands.Admin { @@ -17,8 +19,34 @@ public class AddHubSiteAssociation : PnPAdminCmdlet protected override void ExecuteCmdlet() { - Tenant.ConnectSiteToHubSite(Site.Url, HubSite.Url); - AdminContext.ExecuteQueryRetry(); + try + { + Tenant.ConnectSiteToHubSite(Site.Url, HubSite.Url); + AdminContext.ExecuteQueryRetry(); + } + catch + { + try + { + using (var primaryHub = PnPContext.Clone(HubSite.Url)) + { + var primaryHubSite = primaryHub.Site.Get(p => p.HubSiteId, p => p.IsHubSite); + + using (var associateHubSite = PnPContext.Clone(Site.Url)) + { + var associateSite = associateHubSite.Site.Get(p => p.HubSiteId, p => p.IsHubSite); + if (associateSite.HubSiteId == Guid.Empty) + { + var resultJoin = associateSite.JoinHubSite(primaryHubSite.HubSiteId); + } + } + } + } + catch + { + throw; + } + } } } } From 56bf4109282d628f5fb5c471caa94655cf3bbeee Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 18:07:48 +0200 Subject: [PATCH 14/53] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 840dde0bb..7af8bd817 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `Add-PnPNavigationNode` cmdlet to also search for nodes in child navigation items. [#3625](https://github.com/pnp/powershell/pull/3625) - Fixed `Get-PnPFlow` cmdlet to use the newer Flow URLs instead of the old ARM URLs. [#3677](https://github.com/pnp/powershell/pull/3677) - Fixed `Get-PnPPowerPlatformConnector`, `Get-PnPPowerPlatformEnvironment`, `Get-PnPPowerApp`, `Add-PnPFlowOwner`, `Disable-PnPFlow`, `Enable-PnPFlow`, `Export-PnPFlow`, `Get-PnPFlowOwner`, `Get-PnPFlowRun`, `Remove-PnPFlow`, `Remove-PnPFlowOwner` , `Restart-PnPFlow` and `Stop-PnPFlowRun` cmdlets to use the new HTTP endpoints. [#3687](https://github.com/pnp/powershell/pull/3687) +- Fixed `Add-PnPHubSiteAssociation` cmdlet to allow support for multi-geo scenario. [#3568](https://github.com/pnp/powershell/pull/3568) ### Contributors @@ -111,7 +112,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed an issue when trying to download a file using `Get-PnPFile` from a location that's deeply nested into folders and/or has a really long filename [PnP Core #1290](https://github.com/pnp/pnpcore/pull/1290) - Fixed retrieving error detail in `Get-UPABulkImportStatus` cmdlet. [#3494](https://github.com/pnp/powershell/pull/3494) - Fixed `Rename-PnPTenantSite` cmdlet to allow support for vanity tenant URLs. [#3533](https://github.com/pnp/powershell/pull/3533) -- Fixed `Add-PnPHubSiteAssociation` cmdlet to allow support for multi-geo scenario. [#3568](https://github.com/pnp/powershell/pull/3568) - Fixed `Get-PnPAzureADUser`, `Get-PnPEntraIDUser`, `Add-PnPFlowOwner` and `Remove-PnPFlowOwner` not working when an UPN containing an apostrophe was passed in [#3570](https://github.com/pnp/powershell/pull/3570) ### Changed From d26c40370cc374094d7e8ef5ac01a3862ecdb3e2 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 21:41:12 +0530 Subject: [PATCH 15/53] Feature: Added cmdlet to retrieve File analytics data. (#3644) Co-authored-by: Gautam Sheth <gautam.sheth@staffbase.com> --- documentation/Get-PnPFileAnalyticsData.md | 152 +++++++++++++++++++++ src/Commands/Files/GetFileAnalyticsData.cs | 112 +++++++++++++++ 2 files changed, 264 insertions(+) create mode 100644 documentation/Get-PnPFileAnalyticsData.md create mode 100644 src/Commands/Files/GetFileAnalyticsData.cs diff --git a/documentation/Get-PnPFileAnalyticsData.md b/documentation/Get-PnPFileAnalyticsData.md new file mode 100644 index 000000000..1daceed43 --- /dev/null +++ b/documentation/Get-PnPFileAnalyticsData.md @@ -0,0 +1,152 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Get-PnPFileAnalyticsData.html +external help file: PnP.PowerShell.dll-Help.xml +title: Get-PnPFileAnalyticsData +--- + +# Get-PnPFileAnalyticsData + +## SYNOPSIS +Retrieves analytics data for a file. + +## SYNTAX + +### Return analytics data +```powershell +Get-PnPFileAnalyticsData -Url <String> [-Connection <PnPConnection>] +``` + +## DESCRIPTION +Retrieves file analytics data within a specific date range. + +## EXAMPLES + +### EXAMPLE 1 +```powershell +Get-PnPFileAnalyticsData -Url "/sites/project/Shared Documents/Document.docx" +``` + +Retrieves all available analytics data for the specified file. + +### EXAMPLE 2 +```powershell +Get-PnPFileAnalyticsData -Url "/sites/project/Shared Documents/Document.docx" -LastSevenDays +``` + +Retrieves analytics data for the last seven days of the specified file. + +### EXAMPLE 3 +```powershell +Get-PnPFileAnalyticsData -Url "/sites/project/Shared Documents/Document.docx" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day +``` + +Retrieves analytics data for the last 15 days of the specified file with aggregation interval as days. + +## PARAMETERS + +### -Url +The URL (server or site relative) to the file + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ServerRelativeUrl, SiteRelativeUrl + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -All +When specified, it will retrieve all analytics data. + +```yaml +Type: SwitchParameter +Parameter Sets: All analytics data + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LastSevenDays +When specified, it will retrieve analytics data for the last seven days. + +```yaml +Type: SwitchParameter +Parameter Sets: Analytics by specific intervals + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StartDate +When specified, it will retrieve analytics data starting from the specified start date. + +```yaml +Type: DateTime +Parameter Sets: Analytics by date range + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EndDate +When specified, it will retrieve analytics data ending with specified end date. Should be used along with StartDate parameter + +```yaml +Type: DateTime +Parameter Sets: Analytics by date range + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AnalyticsAggregationInterval +When specified, it will retrieve analytics data with specified aggregation interval. Default is day. +Allowed values are `Day`,`Week` and `Month`. + +```yaml +Type: DateTime +Parameter Sets: Analytics by date range + +Required: False +Position: Named +Default value: Day +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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) diff --git a/src/Commands/Files/GetFileAnalyticsData.cs b/src/Commands/Files/GetFileAnalyticsData.cs new file mode 100644 index 000000000..5366d04e5 --- /dev/null +++ b/src/Commands/Files/GetFileAnalyticsData.cs @@ -0,0 +1,112 @@ +using Microsoft.SharePoint.Client; +using PnP.Core.Model.SharePoint; +using PnP.Framework.Utilities; +using System; +using System.Collections.Generic; +using System.Management.Automation; + +namespace PnP.PowerShell.Commands.Files +{ + [Cmdlet(VerbsCommon.Get, "PnPFileAnalyticsData", DefaultParameterSetName = ParameterSetName_ALL)] + [OutputType(typeof(List<IActivityStat>))] + public class GetFileAnalyticsData : PnPWebCmdlet + { + private const string ParameterSetName_ANALYTICS_BY_DATE_RANGE = "Analytics by date range"; + private const string ParameterSetName_ALL = "All analytics data"; + private const string ParameterSetName_LAST_SEVEN_DAYS = "Analytics by specific intervals"; + + [Parameter(Mandatory = true, ParameterSetName = ParameterSetName_ALL, Position = 0, ValueFromPipeline = true)] + [Parameter(Mandatory = true, ParameterSetName = ParameterSetName_ANALYTICS_BY_DATE_RANGE, Position = 0, ValueFromPipeline = true)] + [Parameter(Mandatory = true, ParameterSetName = ParameterSetName_LAST_SEVEN_DAYS, Position = 0, ValueFromPipeline = true)] + [Alias("ServerRelativeUrl", "SiteRelativeUrl")] + public string Url; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_ALL)] + public SwitchParameter All; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_LAST_SEVEN_DAYS)] + public SwitchParameter LastSevenDays; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_ANALYTICS_BY_DATE_RANGE)] + public DateTime StartDate; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_ANALYTICS_BY_DATE_RANGE)] + public DateTime EndDate; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_ANALYTICS_BY_DATE_RANGE)] + public AnalyticsAggregationInterval AnalyticsAggregationInterval = AnalyticsAggregationInterval.Day; + + protected override void ExecuteCmdlet() + { + var serverRelativeUrl = string.Empty; + + // Remove URL decoding from the Url as that will not work. We will encode the + character specifically, because if that is part of the filename, it needs to stay and not be decoded. + Url = Utilities.UrlUtilities.UrlDecode(Url.Replace("+", "%2B")); + + var webUrl = CurrentWeb.EnsureProperty(w => w.ServerRelativeUrl); + + if (!Url.ToLower().StartsWith(webUrl.ToLower())) + { + serverRelativeUrl = UrlUtility.Combine(webUrl, Url); + } + else + { + serverRelativeUrl = Url; + } + + IFile analyticsFile = PnPContext.Web.GetFileByServerRelativeUrl(serverRelativeUrl, p => p.VroomItemID, p => p.VroomDriveID); + + switch (ParameterSetName) + { + case ParameterSetName_ALL: + // Get analytics for all time + var analytics = analyticsFile.GetAnalytics(); + WriteObject(analytics, true); + break; + + case ParameterSetName_LAST_SEVEN_DAYS: + // Get analytics for last seven days + var analyticsLastSevenDays = analyticsFile.GetAnalytics(new AnalyticsOptions { Interval = AnalyticsInterval.LastSevenDays, CustomAggregationInterval = AnalyticsAggregationInterval.Week }); + WriteObject(analyticsLastSevenDays, true); + break; + + case ParameterSetName_ANALYTICS_BY_DATE_RANGE: + + if (EndDate == DateTime.MinValue) + { + EndDate = DateTime.UtcNow; + } + + if (StartDate == DateTime.MinValue) + { + StartDate = EndDate.AddDays(-90.0); + } + + if (EndDate < StartDate) + { + throw new PSArgumentException("Invalid Date Range"); + } + + if ((EndDate.Date - StartDate.Date).TotalDays > 90) + { + throw new PSArgumentException("The maximum allowed difference between start and end date is 90 days"); + } + + var analyticsCustomData = analyticsFile.GetAnalytics(new AnalyticsOptions + { + Interval = AnalyticsInterval.Custom, + CustomAggregationInterval = AnalyticsAggregationInterval, + CustomEndDate = EndDate, + CustomStartDate = StartDate, + }); + WriteObject(analyticsCustomData, true); + break; + default: + // Get analytics for all time + var allAnalytics = analyticsFile.GetAnalytics(); + WriteObject(allAnalytics, true); + break; + } + } + } +} From 9af3b38908ce8155c1dbe0e48be87b83e3b11c74 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 18:12:00 +0200 Subject: [PATCH 16/53] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7af8bd817..79336e11c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `-Batch` parameter to `Add-PnPGroupMember` cmdlet which allows adding members to a SharePoint group in a batch. [#3651](https://github.com/pnp/powershell/pull/3651) - Added `Get-PnPContainerTypeConfiguration` cmdlet which fetches the container type configuration values. [#3660](https://github.com/pnp/powershell/pull/3660) - Added `-AppBypassInformationBarriers` and `-DefaultOneDriveInformationBarrierMode` parameters to `Set-PnPTenant` cmdlet. [#3679](https://github.com/pnp/powershell/pull/3679) +- Added `Add-PnPFileAnalyticsData` cmdlet to allow retrieval of file analytics data. [#3644](https://github.com/pnp/powershell/pull/3644) ### Fixed From 485fdac72b88c787f6111e878bccadd3165cd732 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 21:44:53 +0530 Subject: [PATCH 17/53] Feature: added cmdlet to retrieve analytics data for a site collection (#3645) Co-authored-by: Gautam Sheth <gautam.sheth@staffbase.com> --- documentation/Get-PnPSiteAnalyticsData.md | 159 ++++++++++++++++++++++ src/Commands/Site/GetSiteAnalytics.cs | 99 ++++++++++++++ 2 files changed, 258 insertions(+) create mode 100644 documentation/Get-PnPSiteAnalyticsData.md create mode 100644 src/Commands/Site/GetSiteAnalytics.cs diff --git a/documentation/Get-PnPSiteAnalyticsData.md b/documentation/Get-PnPSiteAnalyticsData.md new file mode 100644 index 000000000..3011bc78f --- /dev/null +++ b/documentation/Get-PnPSiteAnalyticsData.md @@ -0,0 +1,159 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Get-PnPSiteAnalyticsData.html +external help file: PnP.PowerShell.dll-Help.xml +title: Get-PnPSiteAnalyticsData +--- + +# Get-PnPSiteAnalyticsData + +## SYNOPSIS +Retrieves analytics data for a site. + +## SYNTAX + +### Return analytics data +```powershell +Get-PnPSiteAnalyticsData -Url <String> [-Connection <PnPConnection>] +``` + +## DESCRIPTION +Retrieves site analytics data within a specific date range. + +## EXAMPLES + +### EXAMPLE 1 +```powershell +Get-PnPSiteAnalyticsData -All +``` + +Retrieves all available analytics data for the specified site. + +### EXAMPLE 2 +```powershell +Get-PnPSiteAnalyticsData -LastSevenDays +``` + +Retrieves analytics data for the last seven days of the site. + +### EXAMPLE 3 +```powershell +Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day +``` + +Retrieves analytics data for the last 15 days of the specified site with aggregation interval as days. + +### EXAMPLE 4 +```powershell +Get-PnPSiteAnalyticsData -Identity "https://tenant.sharepoint.com/sites/mysite" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day +``` + +Retrieves analytics data, for the specified site, for the last 15 days of the specified site with aggregation interval as days. + +## PARAMETERS + +### -Identity +The URL (server or site relative) of the site + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ServerRelativeUrl, SiteRelativeUrl + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -All +When specified, it will retrieve all analytics data. + +```yaml +Type: SwitchParameter +Parameter Sets: All analytics data + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LastSevenDays +When specified, it will retrieve analytics data for the last seven days. + +```yaml +Type: SwitchParameter +Parameter Sets: Analytics by specific intervals + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StartDate +When specified, it will retrieve analytics data starting from the specified start date. + +```yaml +Type: DateTime +Parameter Sets: Analytics by date range + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EndDate +When specified, it will retrieve analytics data ending with specified end date. Should be used along with StartDate parameter + +```yaml +Type: DateTime +Parameter Sets: Analytics by date range + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AnalyticsAggregationInterval +When specified, it will retrieve analytics data with specified aggregation interval. Default is day. +Allowed values are `Day`,`Week` and `Month`. + +```yaml +Type: DateTime +Parameter Sets: Analytics by date range + +Required: False +Position: Named +Default value: Day +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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) \ No newline at end of file diff --git a/src/Commands/Site/GetSiteAnalytics.cs b/src/Commands/Site/GetSiteAnalytics.cs new file mode 100644 index 000000000..2290c5441 --- /dev/null +++ b/src/Commands/Site/GetSiteAnalytics.cs @@ -0,0 +1,99 @@ +using Microsoft.SharePoint.Client; +using PnP.Core.Model.SharePoint; +using System; +using System.Management.Automation; + +namespace PnP.PowerShell.Commands.Site +{ + [Cmdlet(VerbsCommon.Get, "PnPSiteAnalyticsData")] + [OutputType(typeof(System.Collections.Generic.List<IActivityStat>))] + public class GetSiteAnalytics : PnPSharePointCmdlet + { + private const string ParameterSetName_ANALYTICS_BY_DATE_RANGE = "Analytics by date range"; + private const string ParameterSetName_ALL = "All analytics data"; + private const string ParameterSetName_LAST_SEVEN_DAYS = "Analytics by specific intervals"; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_ALL, ValueFromPipeline = true)] + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_ANALYTICS_BY_DATE_RANGE, ValueFromPipeline = true)] + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_LAST_SEVEN_DAYS, ValueFromPipeline = true)] + [Alias("Url")] + public string Identity; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_ALL)] + public SwitchParameter All; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_LAST_SEVEN_DAYS)] + public SwitchParameter LastSevenDays; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_ANALYTICS_BY_DATE_RANGE)] + public DateTime StartDate; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_ANALYTICS_BY_DATE_RANGE)] + public DateTime EndDate; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSetName_ANALYTICS_BY_DATE_RANGE)] + public AnalyticsAggregationInterval AnalyticsAggregationInterval = AnalyticsAggregationInterval.Day; + + protected override void ExecuteCmdlet() + { + var analyticsSite = PnPContext.Site; + if (!string.IsNullOrEmpty(Identity)) + { + var pnpClonedContext = PnPContext.Clone(new Uri(Identity)); + analyticsSite = pnpClonedContext.Site; + } + + switch (ParameterSetName) + { + case ParameterSetName_ALL: + // Get analytics for all time + var analytics = analyticsSite.GetAnalytics(); + WriteObject(analytics, true); + break; + + case ParameterSetName_LAST_SEVEN_DAYS: + // Get analytics for last seven days + var analyticsLastSevenDays = analyticsSite.GetAnalytics(new AnalyticsOptions { Interval = AnalyticsInterval.LastSevenDays, CustomAggregationInterval = AnalyticsAggregationInterval.Week }); + WriteObject(analyticsLastSevenDays, true); + break; + + case ParameterSetName_ANALYTICS_BY_DATE_RANGE: + + if (EndDate == DateTime.MinValue) + { + EndDate = DateTime.UtcNow; + } + + if (StartDate == DateTime.MinValue) + { + StartDate = EndDate.AddDays(-90.0); + } + + if (EndDate < StartDate) + { + throw new PSArgumentException("Invalid Date Range"); + } + + if ((EndDate.Date - StartDate.Date).TotalDays > 90) + { + throw new PSArgumentException("The maximum allowed difference between start and end date is 90 days"); + } + + var analyticsCustomData = analyticsSite.GetAnalytics(new AnalyticsOptions + { + Interval = AnalyticsInterval.Custom, + CustomAggregationInterval = AnalyticsAggregationInterval, + CustomEndDate = EndDate, + CustomStartDate = StartDate, + }); + WriteObject(analyticsCustomData, true); + break; + default: + // Get analytics for all time + var allAnalytics = analyticsSite.GetAnalytics(); + WriteObject(allAnalytics, true); + break; + } + } + } +} From 3612edd3e8cc88a069111f8a4653fb23b45ef89c Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 18:15:46 +0200 Subject: [PATCH 18/53] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79336e11c..c48c05a16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Get-PnPContainerTypeConfiguration` cmdlet which fetches the container type configuration values. [#3660](https://github.com/pnp/powershell/pull/3660) - Added `-AppBypassInformationBarriers` and `-DefaultOneDriveInformationBarrierMode` parameters to `Set-PnPTenant` cmdlet. [#3679](https://github.com/pnp/powershell/pull/3679) - Added `Add-PnPFileAnalyticsData` cmdlet to allow retrieval of file analytics data. [#3644](https://github.com/pnp/powershell/pull/3644) +- Added `Add-PnPSiteAnalyticsData` cmdlet to allow retrieval of site analytics data. [#3645](https://github.com/pnp/powershell/pull/3645) ### Fixed From 16db6be5efbd70a736d204caf9a25f77386719c7 Mon Sep 17 00:00:00 2001 From: Siddharth Vaghasia <siddh.vaghasia@gmail.com> Date: Fri, 19 Jan 2024 21:54:04 +0530 Subject: [PATCH 19/53] added GetPowerPlatformSolution command (#3675) Co-authored-by: Gautam Sheth <gautamdsheth@outlook.com> --- documentation/Get-PnPPowerPlatformSolution.md | 90 ++++ .../PowerPlatformSolutionPipeBind.cs | 26 ++ src/Commands/Base/TokenHandling.cs | 20 + .../Environment/PowerPlatformSolution.cs | 204 +++++++++ .../PowerPlatformSolutionPublisher.cs | 403 ++++++++++++++++++ .../Environment/GetPowerPlatformSolution.cs | 64 +++ 6 files changed, 807 insertions(+) create mode 100644 documentation/Get-PnPPowerPlatformSolution.md create mode 100644 src/Commands/Base/PipeBinds/PowerPlatformSolutionPipeBind.cs create mode 100644 src/Commands/Model/PowerPlatform/Environment/PowerPlatformSolution.cs create mode 100644 src/Commands/Model/PowerPlatform/Environment/PowerPlatformSolutionPublisher.cs create mode 100644 src/Commands/PowerPlatform/Environment/GetPowerPlatformSolution.cs diff --git a/documentation/Get-PnPPowerPlatformSolution.md b/documentation/Get-PnPPowerPlatformSolution.md new file mode 100644 index 000000000..5a8c3c729 --- /dev/null +++ b/documentation/Get-PnPPowerPlatformSolution.md @@ -0,0 +1,90 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Get-PnPPowerPlatformSolution.html +external help file: PnP.PowerShell.dll-Help.xml +title: Get-PnPPowerPlatformSolution +--- + +# Get-PnPPowerPlatformSolution + +## SYNOPSIS + +**Required Permissions** + +* Azure: management.azure.com + +Returns the Power Platform Solution/s for a given environment + +## SYNTAX + +```powershell +Get-PnPPowerPlatformSolution [-Environment <PowerPlatformEnvironmentPipeBind>] [-Name <PowerPlatformConnectorPipeBind>] [-Verbose] +``` + +## DESCRIPTION +This cmdlet returns the PowerPlatform solution on a given enviroment. + +## EXAMPLES + +### Example 1 +```powershell +Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment) +``` +This returns all the solutions for a given Power Platform environment + +### Example 2 +```powershell +Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name' +``` +This returns a specific solution on the default Power Platform environment + +## PARAMETERS + +### -Environment +The name of the Power Platform environment or an Environment instance to retrieve the available solutions for. If omitted, the default environment will be used. + +```yaml +Type: PowerPlatformEnvironmentPipeBind +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: The default environment +Accept pipeline input: True +Accept wildcard characters: False +``` + +### -Name +The Name of the solution to retrieve. If not provided, all the solutions will be returned. + +```yaml +Type: PowerPlatformSolutionPipeBind +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -Verbose +When provided, additional debug statements will be shown while executing the cmdlet. + +```yaml +Type: SwitchParameter +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) \ No newline at end of file diff --git a/src/Commands/Base/PipeBinds/PowerPlatformSolutionPipeBind.cs b/src/Commands/Base/PipeBinds/PowerPlatformSolutionPipeBind.cs new file mode 100644 index 000000000..385e697c2 --- /dev/null +++ b/src/Commands/Base/PipeBinds/PowerPlatformSolutionPipeBind.cs @@ -0,0 +1,26 @@ +namespace PnP.PowerShell.Commands.Base.PipeBinds +{ + public sealed class PowerPlatformSolutionPipeBind + { + private readonly string _name; + private readonly Model.PowerPlatform.Environment.Solution.PowerPlatformSolution _solution; + public PowerPlatformSolutionPipeBind(string input) + { + _name = input; + } + + public PowerPlatformSolutionPipeBind(Model.PowerPlatform.Environment.Solution.PowerPlatformSolution solution) + { + _solution = solution; + } + + public string GetName() + { + if (_solution != null) + { + return _solution.FriendlyName; + } + return _name; + } + } +} diff --git a/src/Commands/Base/TokenHandling.cs b/src/Commands/Base/TokenHandling.cs index 4d85d5ad2..70c4f0cbc 100644 --- a/src/Commands/Base/TokenHandling.cs +++ b/src/Commands/Base/TokenHandling.cs @@ -88,6 +88,26 @@ internal static string GetAccessToken(Cmdlet cmdlet, string appOnlyDefaultScope, return null; } + internal static string GetAccessTokenforPowerPlatformSolutions(Cmdlet cmdlet, PnPConnection connection, string enviormentBaseUrl) + { + var contextSettings = connection.Context.GetContextSettings(); + var authManager = contextSettings.AuthenticationManager; + if (authManager != null) + { + if (contextSettings.Type == Framework.Utilities.Context.ClientContextType.SharePointACSAppOnly) + { + // When connected using ACS, we cannot get a token for another endpoint + throw new PSInvalidOperationException("Trying to get a token for a different endpoint while being connected through an ACS token is not possible. Please connect differently."); + } + string[] requiredScopes = new string[1] { enviormentBaseUrl + "/.default" }; + cmdlet.WriteVerbose($"Acquiring oAuth token for {(requiredScopes.Length != 1 ? requiredScopes.Length + " " : "")}permission scope{(requiredScopes.Length != 1 ? "s" : "")} {string.Join(",", requiredScopes)}"); + var accessToken = authManager.GetAccessTokenAsync(requiredScopes).GetAwaiter().GetResult(); + cmdlet.WriteVerbose($"Access token acquired for PowerPlatformSolutions: {accessToken}"); + return accessToken; + } + return null; + } + /// <summary> /// Returns an access token based on a Managed Identity. Only works within Azure components supporting managed identities such as Azure Functions and Azure Runbooks. /// </summary> diff --git a/src/Commands/Model/PowerPlatform/Environment/PowerPlatformSolution.cs b/src/Commands/Model/PowerPlatform/Environment/PowerPlatformSolution.cs new file mode 100644 index 000000000..d852d270b --- /dev/null +++ b/src/Commands/Model/PowerPlatform/Environment/PowerPlatformSolution.cs @@ -0,0 +1,204 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Model.PowerPlatform.Environment.Solution +{ + public class PowerPlatformSolution + { + /// <summary> + /// Etag for the solution + /// </summary> + [JsonPropertyName("@odata.etag")] + public string? ODataEtag { get; set; } + + /// <summary> + /// Date and time when the solution was installed + /// </summary> + [JsonPropertyName("installedon")] + public string? InstalledOn { get; set; } + + /// <summary> + /// Version of the solution package + /// </summary> + [JsonPropertyName("solutionpackageversion")] + public string? SolutionPackageVersion { get; set; } + + /// <summary> + /// Configuration page ID (null in this case) + /// </summary> + [JsonPropertyName("_configurationpageid_value")] + public string? ConfigurationPageId { get; set; } + + /// <summary> + /// ID of the solution + /// </summary> + [JsonPropertyName("solutionid")] + public string? SolutionId { get; set; } + + /// <summary> + /// Date and time when the solution was last modified + /// </summary> + [JsonPropertyName("modifiedon")] + public string? ModifiedOn { get; set; } + + /// <summary> + /// Unique name of the solution + /// </summary> + [JsonPropertyName("uniquename")] + public string? UniqueName { get; set; } + + /// <summary> + /// Indicates if the solution is managed by API + /// </summary> + [JsonPropertyName("isapimanaged")] + public bool IsApiManaged { get; set; } + + /// <summary> + /// Publisher ID (null in this case) + /// </summary> + [JsonPropertyName("_publisherid_value")] + public string? PublisherIdValue { get; set; } + + /// <summary> + /// Indicates if the solution is managed + /// </summary> + [JsonPropertyName("ismanaged")] + public bool IsManaged { get; set; } + + /// <summary> + /// Indicates if the solution is visible + /// </summary> + [JsonPropertyName("isvisible")] + public bool IsVisible { get; set; } + + /// <summary> + /// Thumbprint (null in this case) + /// </summary> + [JsonPropertyName("thumbprint")] + public string? Thumbprint { get; set; } + + /// <summary> + /// Pinpoint publisher ID (null in this case) + /// </summary> + [JsonPropertyName("pinpointpublisherid")] + public string? PinpointPublisherId { get; set; } + + /// <summary> + /// Version of the solution + /// </summary> + [JsonPropertyName("version")] + public string? Version { get; set; } + + /// <summary> + /// Modified on behalf by value (null in this case) + /// </summary> + [JsonPropertyName("_modifiedonbehalfby_value")] + public string? ModifiedOnBehalfByValue { get; set; } + + /// <summary> + /// Parent solution ID value (null in this case) + /// </summary> + [JsonPropertyName("_parentsolutionid_value")] + public string? ParentSolutionIdValue { get; set; } + + /// <summary> + /// Pinpoint asset ID (null in this case) + /// </summary> + [JsonPropertyName("pinpointassetid")] + public string? PinpointAssetId { get; set; } + + /// <summary> + /// Pinpoint solution ID (null in this case) + /// </summary> + [JsonPropertyName("pinpointsolutionid")] + public string? PinpointSolutionId { get; set; } + + /// <summary> + /// Friendly name of the solution + /// </summary> + [JsonPropertyName("friendlyname")] + public string? FriendlyName { get; set; } + + /// <summary> + /// Organization ID value + /// </summary> + [JsonPropertyName("_organizationid_value")] + public string? OrganizationIdValue { get; set; } + + /// <summary> + /// Version number + /// </summary> + [JsonPropertyName("versionnumber")] + public int? VersionNumber { get; set; } + + /// <summary> + /// Template suffix (null in this case) + /// </summary> + [JsonPropertyName("templatesuffix")] + public string? TemplateSuffix { get; set; } + + /// <summary> + /// Upgrade information (null in this case) + /// </summary> + [JsonPropertyName("upgradeinfo")] + public string? UpgradeInfo { get; set; } + + /// <summary> + /// Created on behalf by value (null in this case) + /// </summary> + [JsonPropertyName("_createdonbehalfby_value")] + public string? CreatedOnBehalfByValue { get; set; } + + /// <summary> + /// Modified by value + /// </summary> + [JsonPropertyName("_modifiedby_value")] + public string? ModifiedByValue { get; set; } + + /// <summary> + /// Date and time when the solution was created + /// </summary> + [JsonPropertyName("createdon")] + public string? CreatedOn { get; set; } + + /// <summary> + /// Date and time when the solution was last updated (null in this case) + /// </summary> + [JsonPropertyName("updatedon")] + public string? UpdatedOn { get; set; } + + /// <summary> + /// Description of the solution (null in this case) + /// </summary> + [JsonPropertyName("description")] + public string? Description { get; set; } + + /// <summary> + /// Solution type (null in this case) + /// </summary> + [JsonPropertyName("solutiontype")] + public int? SolutionType { get; set; } + + /// <summary> + /// Pinpoint solution default locale (null in this case) + /// </summary> + [JsonPropertyName("pinpointsolutiondefaultlocale")] + public string? PinpointSolutionDefaultLocale { get; set; } + + /// <summary> + /// Created by value + /// </summary> + [JsonPropertyName("_createdby_value")] + public string? CreatedByValue { get; set; } + + /// <summary> + /// Publisher information + /// </summary> + [JsonPropertyName("publisherid")] + public PowerPlatformSolutionPublisher PublisherId { get; set; } + } +} diff --git a/src/Commands/Model/PowerPlatform/Environment/PowerPlatformSolutionPublisher.cs b/src/Commands/Model/PowerPlatform/Environment/PowerPlatformSolutionPublisher.cs new file mode 100644 index 000000000..df497e95f --- /dev/null +++ b/src/Commands/Model/PowerPlatform/Environment/PowerPlatformSolutionPublisher.cs @@ -0,0 +1,403 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Model.PowerPlatform.Environment.Solution +{ + public class PowerPlatformSolutionPublisher + { + /// <summary> + /// Etag for the publisher + /// </summary> + [JsonPropertyName("@odata.etag")] + public string? ODataEtag { get; set; } + + /// <summary> + /// Address line 1 (null in this case) + /// </summary> + [JsonPropertyName("address2_line1")] + public string? Address2Line1 { get; set; } + + /// <summary> + /// Pinpoint? publisher default locale (null in this case) + /// </summary> + [JsonPropertyName("pinpoint?publisherdefaultlocale")] + public string? PinpointPublisherDefaultLocale { get; set; } + + /// <summary> + /// County (null in this case) + /// </summary> + [JsonPropertyName("address1_county")] + public string? Address1County { get; set; } + + /// <summary> + /// Address 2 UTC offset (null in this case) + /// </summary> + [JsonPropertyName("address2_utcoffset")] + public string? Address2UtcOffset { get; set; } + + /// <summary> + /// Fax number (null in this case) + /// </summary> + [JsonPropertyName("address2_fax")] + public string? Address2Fax { get; set; } + + /// <summary> + /// Date and time when modified + /// </summary> + [JsonPropertyName("modifiedon")] + public string? ModifiedOn { get; set; } + + /// <summary> + /// Entity image URL (null in this case) + /// </summary> + [JsonPropertyName("entityimage_url")] + public string? EntityImageUrl { get; set; } + + /// <summary> + /// Name (null in this case) + /// </summary> + [JsonPropertyName("address1_name")] + public string? Address1Name { get; set; } + + /// <summary> + /// Address line 1 (null in this case) + /// </summary> + [JsonPropertyName("address1_line1")] + public string? Address1Line1 { get; set; } + + /// <summary> + /// Unique name + /// </summary> + [JsonPropertyName("uniquename")] + public string? UniqueName { get; set; } + + /// <summary> + /// Postal code (null in this case) + /// </summary> + [JsonPropertyName("address1_postalcode")] + public string? Address1PostalCode { get; set; } + + /// <summary> + /// Address 2 line 3 (null in this case) + /// </summary> + [JsonPropertyName("address2_line3")] + public string? Address2Line3 { get; set; } + + /// <summary> + /// Address 1 address ID + /// </summary> + [JsonPropertyName("address1_addressid")] + public string? Address1AddressId { get; set; } + + /// <summary> + /// Publisher ID + /// </summary> + [JsonPropertyName("publisherid")] + public string? PublisherId { get; set; } + + /// <summary> + /// Address 1 line 3 (null in this case) + /// </summary> + [JsonPropertyName("address1_line3")] + public string? Address1Line3 { get; set; } + + /// <summary> + /// Address 2 name (null in this case) + /// </summary> + [JsonPropertyName("address2_name")] + public string? Address2Name { get; set; } + + /// <summary> + /// Address 2 city (null in this case) + /// </summary> + [JsonPropertyName("address2_city")] + public string? Address2City { get; set; } + + /// <summary> + /// Address 1 UTC offset (null in this case) + /// </summary> + [JsonPropertyName("address1_utcoffset")] + public string? Address1UtcOffset { get; set; } + + /// <summary> + /// Pinpoint? publisher ID (null in this case) + /// </summary> + [JsonPropertyName("pinpoint?publisherid")] + public string? PinpointPublisherId { get; set; } + + /// <summary> + /// Address 2 county (null in this case) + /// </summary> + [JsonPropertyName("address2_county")] + public string? Address2County { get; set; } + + /// <summary> + /// Email address + /// </summary> + [JsonPropertyName("emailaddress")] + public string? EmailAddress { get; set; } + + /// <summary> + /// Address 2 post office box (null in this case) + /// </summary> + [JsonPropertyName("address2_postofficebox")] + public string? Address2PostOfficeBox { get; set; } + + /// <summary> + /// State or province (null in this case) + /// </summary> + [JsonPropertyName("address1_stateorprovince")] + public string? Address1StateOrProvince { get; set; } + + /// <summary> + /// Address 2 telephone 3 (null in this case) + /// </summary> + [JsonPropertyName("address2_telephone3")] + public string? Address2Telephone3 { get; set; } + + /// <summary> + /// Address 2 telephone 2 (null in this case) + /// </summary> + [JsonPropertyName("address2_telephone2")] + public string? Address2Telephone2 { get; set; } + + /// <summary> + /// Address 2 telephone 1 (null in this case) + /// </summary> + [JsonPropertyName("address2_telephone1")] + public string? Address2Telephone1 { get; set; } + + /// <summary> + /// Address 2 shipping method code + /// </summary> + [JsonPropertyName("address2_shippingmethodcode")] + public int? Address2ShippingMethodCode { get; set; } + + /// <summary> + /// Modified on behalf by value (null in this case) + /// </summary> + [JsonPropertyName("_modifiedonbehalfby_value")] + public string? ModifiedOnBehalfByValue { get; set; } + + /// <summary> + /// Indicates if it is read-only + /// </summary> + [JsonPropertyName("isreadonly")] + public bool IsReadOnly { get; set; } + + /// <summary> + /// Address 2 state or province (null in this case) + /// </summary> + [JsonPropertyName("address2_stateorprovince")] + public string? Address2StateOrProvince { get; set; } + + /// <summary> + /// Entity image timestamp (null in this case) + /// </summary> + [JsonPropertyName("entityimage_timestamp")] + public string? EntityImageTimestamp { get; set; } + + /// <summary> + /// Address 1 latitude (null in this case) + /// </summary> + [JsonPropertyName("address1_latitude")] + public string? Address1Latitude { get; set; } + + /// <summary> + /// Customization option value prefix + /// </summary> + [JsonPropertyName("customizationoptionvalueprefix")] + public int? CustomizationOptionValuePrefix { get; set; } + + /// <summary> + /// Address 2 latitude (null in this case) + /// </summary> + [JsonPropertyName("address2_latitude")] + public string? Address2Latitude { get; set; } + + /// <summary> + /// Address 1 longitude (null in this case) + /// </summary> + [JsonPropertyName("address1_longitude")] + public string? Address1Longitude { get; set; } + + /// <summary> + /// Address 1 line 2 (null in this case) + /// </summary> + [JsonPropertyName("address1_line2")] + public string? Address1Line2 { get; set; } + + /// <summary> + /// Friendly name + /// </summary> + [JsonPropertyName("friendlyname")] + public string? FriendlyName { get; set; } + + /// <summary> + /// Supporting website URL + /// </summary> + [JsonPropertyName("supportingwebsiteurl")] + public string? SupportingWebsiteUrl { get; set; } + + /// <summary> + /// Address 2 line 2 (null in this case) + /// </summary> + [JsonPropertyName("address2_line2")] + public string? Address2Line2 { get; set; } + + /// <summary> + /// Address 2 postal code (null in this case) + /// </summary> + [JsonPropertyName("address2_postalcode")] + public string? Address2PostalCode { get; set; } + + /// <summary> + /// Organization ID value + /// </summary> + [JsonPropertyName("_organizationid_value")] + public string? OrganizationIdValue { get; set; } + + /// <summary> + /// Version number + /// </summary> + [JsonPropertyName("versionnumber")] + public int? VersionNumber { get; set; } + + /// <summary> + /// Address 2 UPS zone (null in this case) + /// </summary> + [JsonPropertyName("address2_upszone")] + public string? Address2UpsZone { get; set; } + + /// <summary> + /// Address 2 longitude (null in this case) + /// </summary> + [JsonPropertyName("address2_longitude")] + public string? Address2Longitude { get; set; } + + /// <summary> + /// Address 1 fax (null in this case) + /// </summary> + [JsonPropertyName("address1_fax")] + public string? Address1Fax { get; set; } + + /// <summary> + /// Customization prefix + /// </summary> + [JsonPropertyName("customizationprefix")] + public string? CustomizationPrefix { get; set; } + + /// <summary> + /// Created on behalf by value (null in this case) + /// </summary> + [JsonPropertyName("_createdonbehalfby_value")] + public string? CreatedOnBehalfByValue { get; set; } + + /// <summary> + /// Modified by value + /// </summary> + [JsonPropertyName("_modifiedby_value")] + public string? ModifiedByValue { get; set; } + + /// <summary> + /// Date and time when created + /// </summary> + [JsonPropertyName("createdon")] + public string? CreatedOn { get; set; } + + /// <summary> + /// Address 2 country (null in this case) + /// </summary> + [JsonPropertyName("address2_country")] + public string? Address2Country { get; set; } + + /// <summary> + /// Description (null in this case) + /// </summary> + [JsonPropertyName("description")] + public string? Description { get; set; } + + /// <summary> + /// Address 2 address ID + /// </summary> + [JsonPropertyName("address2_addressid")] + public string? Address2AddressId { get; set; } + + /// <summary> + /// Address 1 shipping method code + /// </summary> + [JsonPropertyName("address1_shippingmethodcode")] + public int? Address1ShippingMethodCode { get; set; } + + /// <summary> + /// Address 1 post office box (null in this case) + /// </summary> + [JsonPropertyName("address1_postofficebox")] + public string? Address1PostOfficeBox { get; set; } + + /// <summary> + /// Address 1 UPS zone (null in this case) + /// </summary> + [JsonPropertyName("address1_upszone")] + public string? Address1UpsZone { get; set; } + + /// <summary> + /// Address 1 address type code + /// </summary> + [JsonPropertyName("address1_addresstypecode")] + public int? Address1AddressTypeCode { get; set; } + + /// <summary> + /// Address 1 country (null in this case) + /// </summary> + [JsonPropertyName("address1_country")] + public string? Address1Country { get; set; } + + /// <summary> + /// Entity image ID (null in this case) + /// </summary> + [JsonPropertyName("entityimageid")] + public string? EntityImageId { get; set; } + + /// <summary> + /// Entity image (null in this case) + /// </summary> + [JsonPropertyName("entityimage")] + public string? EntityImage { get; set; } + + /// <summary> + /// Created by value + /// </summary> + [JsonPropertyName("_createdby_value")] + public string? CreatedByValue { get; set; } + + /// <summary> + /// Address 1 telephone 3 (null in this case) + /// </summary> + [JsonPropertyName("address1_telephone3")] + public string? Address1Telephone3 { get; set; } + + /// <summary> + /// Address 1 city (null in this case) + /// </summary> + [JsonPropertyName("address1_city")] + public string? Address1City { get; set; } + + /// <summary> + /// Address 1 telephone 2 (null in this case) + /// </summary> + [JsonPropertyName("address1_telephone2")] + public string? Address1Telephone2 { get; set; } + + /// <summary> + /// Address 1 telephone 1 (null in this case) + /// </summary> + [JsonPropertyName("address1_telephone1")] + public string? Address1Telephone1 { get; set; } + } +} + diff --git a/src/Commands/PowerPlatform/Environment/GetPowerPlatformSolution.cs b/src/Commands/PowerPlatform/Environment/GetPowerPlatformSolution.cs new file mode 100644 index 000000000..f9f91087c --- /dev/null +++ b/src/Commands/PowerPlatform/Environment/GetPowerPlatformSolution.cs @@ -0,0 +1,64 @@ +using PnP.PowerShell.Commands.Base; +using PnP.PowerShell.Commands.Utilities.REST; +using System; +using System.Management.Automation; +using System.Linq; +using PnP.PowerShell.Commands.Base.PipeBinds; + +namespace PnP.PowerShell.Commands.PowerPlatform.Environment +{ + [Cmdlet(VerbsCommon.Get, "PnPPowerPlatformSolution")] + public class GetPowerPlatformSolution: PnPAzureManagementApiCmdlet + { + + [Parameter(Mandatory = false, ValueFromPipeline = true)] + public PowerPlatformEnvironmentPipeBind Environment; + + [Parameter(Mandatory = false)] + public PowerPlatformSolutionPipeBind Name; + + protected override void ExecuteCmdlet() + { + string environmentName = null; + string dynamicsScopeUrl = null; + var environments = GraphHelper.GetResultCollectionAsync<Model.PowerPlatform.Environment.Environment>(Connection, "https://api.flow.microsoft.com/providers/Microsoft.ProcessSimple/environments?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + if (ParameterSpecified(nameof(Environment))) + { + environmentName = Environment.GetName().ToLower(); + WriteVerbose($"Using environment as provided '{environmentName}'"); + dynamicsScopeUrl = environments.FirstOrDefault(e => e.Properties.DisplayName.ToLower() == environmentName || e.Name.ToLower() == environmentName)?.Properties.LinkedEnvironmentMetadata.InstanceApiUrl; + } + else + { + environmentName = environments.FirstOrDefault(e => e.Properties.IsDefault.HasValue && e.Properties.IsDefault == true)?.Name; + dynamicsScopeUrl = environments.FirstOrDefault(e => e.Properties.IsDefault.HasValue && e.Properties.IsDefault == true)?.Properties.LinkedEnvironmentMetadata.InstanceApiUrl; + if (string.IsNullOrEmpty(environmentName)) + { + throw new Exception($"No default environment found, please pass in a specific environment name using the {nameof(Environment)} parameter"); + } + + WriteVerbose($"Using default environment as retrieved '{environmentName}'"); + } + + string accessTokenForGettingSolutions = TokenHandler.GetAccessTokenforPowerPlatformSolutions(this, Connection, dynamicsScopeUrl); + + if (ParameterSpecified(nameof(Name))) + { + var solutionName = Name.GetName(); + + WriteVerbose($"Retrieving specific solution with the provided name '{solutionName}' within the environment '{environmentName}'"); + + var requestUrl = dynamicsScopeUrl + "/api/data/v9.0/solutions?$filter=isvisible eq true and friendlyname eq '" + solutionName + "'&$expand=publisherid&api-version=9.1"; + var solution = GraphHelper.GetResultCollectionAsync<Model.PowerPlatform.Environment.Solution.PowerPlatformSolution>(Connection, requestUrl, accessTokenForGettingSolutions).GetAwaiter().GetResult(); + WriteObject(solution, false); + } + else + { + WriteVerbose($"Retrieving all Solutions within environment '{environmentName}'"); + var requestUrl = dynamicsScopeUrl + "/api/data/v9.0/solutions?$filter=isvisible eq true&$expand=publisherid($select=friendlyname)&api-version=9.1"; + var solutions = GraphHelper.GetResultCollectionAsync<Model.PowerPlatform.Environment.Solution.PowerPlatformSolution>(Connection, requestUrl, accessTokenForGettingSolutions).GetAwaiter().GetResult(); + WriteObject(solutions, true); + } + } + } +} \ No newline at end of file From 3638a7e8497b3e795946bd2bce14a83f85df5262 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 18:25:34 +0200 Subject: [PATCH 20/53] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c48c05a16..58f8687a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `-AppBypassInformationBarriers` and `-DefaultOneDriveInformationBarrierMode` parameters to `Set-PnPTenant` cmdlet. [#3679](https://github.com/pnp/powershell/pull/3679) - Added `Add-PnPFileAnalyticsData` cmdlet to allow retrieval of file analytics data. [#3644](https://github.com/pnp/powershell/pull/3644) - Added `Add-PnPSiteAnalyticsData` cmdlet to allow retrieval of site analytics data. [#3645](https://github.com/pnp/powershell/pull/3645) +- Added `Get-PnPPowerPlatformSolution` cmdlet to Power Platform solutions. [#3675](https://github.com/pnp/powershell/pull/3675) ### Fixed From b6e2607e0535524ede0f76c1b4fd0efe05f4ead6 Mon Sep 17 00:00:00 2001 From: Reshmee Auckloo <reshmee011@gmail.com> Date: Fri, 19 Jan 2024 16:39:27 +0000 Subject: [PATCH 21/53] cmdlets new-pnpcontainer (#3669) Co-authored-by: Gautam Sheth <gautamdsheth@outlook.com> --- documentation/New-PnPContainerType.md | 152 ++++++++++++++++++ src/Commands/Admin/NewContainerType.cs | 65 ++++++++ .../Model/SharePoint/SPContainerTypeObj.cs | 33 ++++ 3 files changed, 250 insertions(+) create mode 100644 documentation/New-PnPContainerType.md create mode 100644 src/Commands/Admin/NewContainerType.cs create mode 100644 src/Commands/Model/SharePoint/SPContainerTypeObj.cs diff --git a/documentation/New-PnPContainerType.md b/documentation/New-PnPContainerType.md new file mode 100644 index 000000000..1a82673b0 --- /dev/null +++ b/documentation/New-PnPContainerType.md @@ -0,0 +1,152 @@ +--- +Module Name: PnP.PowerShell +title: New-PnPContainerType +schema: 2.0.0 +applicable: SharePoint Online +external help file: PnP.PowerShell.dll-Help.xml +online version: https://pnp.github.io/powershell/cmdlets/New-PnPContainerType.html +--- + +# New-PnPContainerType + +## SYNOPSIS + +**Required Permissions** + + * Microsoft 365 SharePoint Administrator role is required + +Creates a new SharePoint Container Type. Refer to [Hands on Lab - Setup and Configure SharePoint Embedded](https://learn.microsoft.com/en-us/sharepoint/dev/embedded/mslearn/m01-05-hol) for more details. + +## SYNTAX + +### Trial + +```powershell +New-PnPContainerType -ContainerTypeName <string> -OwningApplicationId <Guid> -TrialContainerType <SwitchParameter> [-Region <String>] [-AzureSubscriptionId <Guid>] [-ResourceGroup <String>] +``` + +### Standard + +```powershell +New-PnPContainerType -ContainerTypeName <string> -OwningApplicationId <Guid> -Region <String> -AzureSubscriptionId <Guid> -ResourceGroup <String> +``` + +## DESCRIPTION + +Enables the creation of either a trial or standard SharePoint Container Type. Use the `TrialContainerType` switch parameter to designate the container type as a trial. + +## EXAMPLES + +### EXAMPLE 1 + +```powershell +New-PnPContainerType -ContainerTypeName "test1" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup "SPEmbed" -Region "Uk-South" +``` + +Creates a standard SharePoint Container Type. + +### EXAMPLE 2 + +```powershell +New-SPOContainerType -TrialContainerType -ContainerTypeName "test1" -OwningApplicationId df4085cc-9a38-4255-badc-5c5225610475 +``` + +Creates a trial SharePoint Container Type. + + +## PARAMETERS + +### ContainerTypeName + +The name of the Container Type. + +```yaml +Type: String +Parameter Sets: (All) + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### OwningApplicationId + +The unique identifier of the owning application which is the value of the Microsoft Entra ID app ID set up as part of configuring SharePoint Embed. + +```yaml +Type: Guid +Parameter Sets: (All) + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TrialContainerType + +The billing classification of the Container Type. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AzureSubscriptionId + +The unique identifier of the Azure Active Directory profile (Microsoft Entra ID) for billing purposes. + +```yaml +Type: Guid +Parameter Sets: Standard + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Region + +The region of the Container Type. + +```yaml +Type: String +Parameter Sets: Standard + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroup + +The resource group of the Container Type. + +```yaml +Type: String +Parameter Sets: Standard + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## RELATED LINKS + +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) +[https://pnp.github.io/pnpframework/api/PnP.Framework.Enums.TimeZone.html](https://pnp.github.io/pnpframework/api/PnP.Framework.Enums.TimeZone.html) diff --git a/src/Commands/Admin/NewContainerType.cs b/src/Commands/Admin/NewContainerType.cs new file mode 100644 index 000000000..c4559e543 --- /dev/null +++ b/src/Commands/Admin/NewContainerType.cs @@ -0,0 +1,65 @@ +using Microsoft.Online.SharePoint.TenantAdministration; +using Microsoft.SharePoint.Client; +using PnP.PowerShell.Commands.Base; +using System; +using System.Management.Automation; + +namespace PnP.PowerShell.Commands.Admin +{ + [Cmdlet(VerbsCommon.New, "PnPContainerType")] + public class NewContainerType : PnPAdminCmdlet,IDynamicParameters + { + private const string ParameterSet_Standard = "Standard"; + [Parameter(Mandatory = true)] + public string ContainerTypeName; + + [Parameter(Mandatory = true)] + public Guid OwningApplicationId; + + [Parameter(Mandatory = false)] + public SwitchParameter TrialContainerType; + private StandardContainerParameters _standardContainerParameters; + public object GetDynamicParameters() + { + if(!ParameterSpecified(nameof(TrialContainerType))) + { + _standardContainerParameters = new StandardContainerParameters(); + return _standardContainerParameters; + } + return null; + } + + protected override void ExecuteCmdlet() + { + SPContainerTypeProperties sPContainerTypeProperties = new SPContainerTypeProperties(); + sPContainerTypeProperties.DisplayName = ContainerTypeName; + sPContainerTypeProperties.OwningAppId = OwningApplicationId; + + sPContainerTypeProperties.SPContainerTypeBillingClassification = TrialContainerType ? SPContainerTypeBillingClassification.Trial : SPContainerTypeBillingClassification.Standard; + if(!ParameterSpecified(nameof(TrialContainerType))) + { + sPContainerTypeProperties.AzureSubscriptionId = _standardContainerParameters.AzureSubscriptionId; + sPContainerTypeProperties.ResourceGroup = _standardContainerParameters.ResourceGroup; + sPContainerTypeProperties.Region = _standardContainerParameters.Region; + } + ClientResult<SPContainerTypeProperties> sPOContainerTypeId = Tenant.NewSPOContainerType(sPContainerTypeProperties); + AdminContext.ExecuteQueryRetry(); + if (sPOContainerTypeId != null && sPOContainerTypeId.Value != null) + { + WriteObject(new Model.SharePoint.SPContainerTypeObj(sPOContainerTypeId.Value)); + } + } + + public class StandardContainerParameters + { + [Parameter(Mandatory = true, ParameterSetName = ParameterSet_Standard)] + public Guid AzureSubscriptionId; + + [Parameter(Mandatory = true, ParameterSetName = ParameterSet_Standard)] + public string ResourceGroup; + + [Parameter(Mandatory = true, ParameterSetName = ParameterSet_Standard)] + public string Region; + } + } +} \ No newline at end of file diff --git a/src/Commands/Model/SharePoint/SPContainerTypeObj.cs b/src/Commands/Model/SharePoint/SPContainerTypeObj.cs new file mode 100644 index 000000000..f38066f92 --- /dev/null +++ b/src/Commands/Model/SharePoint/SPContainerTypeObj.cs @@ -0,0 +1,33 @@ +using Microsoft.Online.SharePoint.TenantAdministration; +using System; + +namespace PnP.PowerShell.Commands.Model.SharePoint +{ + public class SPContainerTypeObj + { + public Guid ContainerTypeId { get; private set; } + + public Guid OwningApplicationId { get; private set; } + + public string ContainerTypeName { get; private set; } + + public SPContainerTypeBillingClassification Classification { get; private set; } + + public string Region { get; private set; } + + public Guid AzureSubscriptionId { get; private set; } + + public string ResourceGroup { get; private set; } + + internal SPContainerTypeObj(SPContainerTypeProperties containerTypeConfigurationProperties) + { + ContainerTypeId = containerTypeConfigurationProperties.ContainerTypeId; + OwningApplicationId = containerTypeConfigurationProperties.OwningAppId; + ContainerTypeName = containerTypeConfigurationProperties.DisplayName; + Region = containerTypeConfigurationProperties.Region; + AzureSubscriptionId = containerTypeConfigurationProperties.AzureSubscriptionId; + ResourceGroup = containerTypeConfigurationProperties.ResourceGroup; + Classification = containerTypeConfigurationProperties.SPContainerTypeBillingClassification; + } + } +} From 4827f21e13119fbf339d1fa16c6178131de8eb61 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 18:40:48 +0200 Subject: [PATCH 22/53] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58f8687a3..4f772847b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Add-PnPFileAnalyticsData` cmdlet to allow retrieval of file analytics data. [#3644](https://github.com/pnp/powershell/pull/3644) - Added `Add-PnPSiteAnalyticsData` cmdlet to allow retrieval of site analytics data. [#3645](https://github.com/pnp/powershell/pull/3645) - Added `Get-PnPPowerPlatformSolution` cmdlet to Power Platform solutions. [#3675](https://github.com/pnp/powershell/pull/3675) +- Added `New-PnPContainerType` cmdlet to create a new SharePoint container type. [#3669](https://github.com/pnp/powershell/pull/3669) ### Fixed From acc3450ff422d305e9dcfca35ebe10e1cedbf198 Mon Sep 17 00:00:00 2001 From: Rohit Devmore <rohit404404@gmail.com> Date: Fri, 19 Jan 2024 22:15:42 +0530 Subject: [PATCH 23/53] Update Set-PnPAzureADAppSitePermission.md (#3684) Removed notice section from description. Do not see any special permisison in SET compared to GRANT. Both seem to have all four permissions avaialble i.e. Read|Write|Manage|FullControl " Notice that this cmdlet allows for more permissions compared for when initially setting rights through" Co-authored-by: Gautam Sheth <gautamdsheth@outlook.com> --- documentation/Set-PnPAzureADAppSitePermission.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/Set-PnPAzureADAppSitePermission.md b/documentation/Set-PnPAzureADAppSitePermission.md index 6370b54c8..ecffa36b0 100644 --- a/documentation/Set-PnPAzureADAppSitePermission.md +++ b/documentation/Set-PnPAzureADAppSitePermission.md @@ -25,7 +25,7 @@ Set-PnPAzureADAppSitePermission -PermissionId <String> -Permissions <Read|Write| ## DESCRIPTION -This cmdlet updates permissions for a given Azure Active Directory application registration in a site collection. It is used in conjunction with the Azure Active Directory SharePoint application permission Sites.Selected. Notice that this cmdlet allows for more permissions compared for when initially setting rights through [Grant-PnPAzureADAppSitePermission](Grant-PnPAzureADAppSitePermission.md). +This cmdlet updates permissions for a given Azure Active Directory application registration in a site collection. It is used in conjunction with the Azure Active Directory SharePoint application permission Sites.Selected. ## EXAMPLES From 7122226c182fc3c330d0f0d4716e2d73c07f273a Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 18:46:29 +0200 Subject: [PATCH 24/53] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f772847b..bab8ca216 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Contributors +- Rohit Devmore [rohit404404] - Konrad K. [wilecoyotegenius] - Kunj Balkrishna Sangani [kunj-sangani] - Koen Zomers [koenzomers] From 810bb4befb8464806d4e289cf49c9ad8c0627d01 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 20:45:21 +0200 Subject: [PATCH 25/53] Update Set-PnPListItem.md --- documentation/Set-PnPListItem.md | 38 ++++++++++++++++---------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/documentation/Set-PnPListItem.md b/documentation/Set-PnPListItem.md index 8812c3cbf..5476a2373 100644 --- a/documentation/Set-PnPListItem.md +++ b/documentation/Set-PnPListItem.md @@ -221,43 +221,43 @@ Accept wildcard characters: False Use the internal names of the fields when specifying field names. -Single line of text: -Values @{"TextField" = "Title New"} +Single line of text: ``` -Values @{"TextField" = "Title New"} ``` -Multiple lines of text: -Values @{"MultiTextField" = "New text\`n\`nMore text"} +Multiple lines of text: ``` -Values @{"MultiTextField" = "New text\`n\`nMore text"} ``` -Rich text: -Values @{"MultiTextField" = "<strong>New</strong> text"} +Rich text: ``` -Values @{"MultiTextField" = "<strong>New</strong> text"} ``` -Choice: -Values @{"ChoiceField" = "Value 1"} +Choice: ``` -Values @{"ChoiceField" = "Value 1"} ``` -Multi-Choice: -Values @{"MultiChoice" = "Choice 1","Choice 2"} +Multi-Choice: ``` -Values @{"MultiChoice" = "Choice 1","Choice 2"} ``` -Number: -Values @{"NumberField" = "10"} +Number: ``` -Values @{"NumberField" = "10"} ``` -Currency: -Values @{"CurrencyField" = "10"} +Currency: ``` -Values @{"CurrencyField" = "10"} ``` -Date and Time: -Values @{"DateAndTimeField" = "03/13/2015 14:16"} +Date and Time: ``` -Values @{"DateAndTimeField" = "03/13/2015 14:16"} ``` -Lookup (id of lookup value): -Values @{"LookupField" = "2"} +Lookup (id of lookup value): ``` -Values @{"LookupField" = "2"} ``` -Multi value lookup (id of lookup values as array 1): -Values @{"MultiLookupField" = "1","2"} +Multi value lookup (id of lookup values as array 1): ``` -Values @{"MultiLookupField" = "1","2"} ``` -Multi value lookup (id of lookup values as array 2): -Values @{"MultiLookupField" = 1,2} +Multi value lookup (id of lookup values as array 2): ``` -Values @{"MultiLookupField" = 1,2} ``` -Multi value lookup (id of lookup values as string): -Values @{"MultiLookupField" = "1,2"} +Multi value lookup (id of lookup values as string): ``` -Values @{"MultiLookupField" = "1,2"} ``` -Yes/No: -Values @{"YesNoField" = $false} +Yes/No: ``` -Values @{"YesNoField" = $false} ``` -Person/Group (id of user/group in Site User Info List or email of the user, separate multiple values with a comma): -Values @{"PersonField" = "user1@domain.com","21"} +Person/Group (id of user/group in Site User Info List or email of the user, separate multiple values with a comma): ``` -Values @{"PersonField" = "user1@domain.com","21"} ``` -Managed Metadata (single value with path to term): -Values @{"MetadataField" = "CORPORATE|DEPARTMENTS|FINANCE"} +Managed Metadata (single value with path to term): ``` -Values @{"MetadataField" = "CORPORATE|DEPARTMENTS|FINANCE"} ``` -Managed Metadata (single value with id of term): -Values @{"MetadataField" = "fe40a95b-2144-4fa2-b82a-0b3d0299d818"} with Id of term +Managed Metadata (single value with id of term): ``` -Values @{"MetadataField" = "fe40a95b-2144-4fa2-b82a-0b3d0299d818"} with Id of term ``` -Managed Metadata (multiple values with paths to terms): -Values @{"MetadataField" = ("CORPORATE|DEPARTMENTS|FINANCE","CORPORATE|DEPARTMENTS|HR")} +Managed Metadata (multiple values with paths to terms): ``` -Values @{"MetadataField" = ("CORPORATE|DEPARTMENTS|FINANCE","CORPORATE|DEPARTMENTS|HR")} ``` -Managed Metadata (multiple values with ids of terms): -Values @{"MetadataField" = ("fe40a95b-2144-4fa2-b82a-0b3d0299d818","52d88107-c2a8-4bf0-adfa-04bc2305b593")} +Managed Metadata (multiple values with ids of terms): ``` -Values @{"MetadataField" = ("fe40a95b-2144-4fa2-b82a-0b3d0299d818","52d88107-c2a8-4bf0-adfa-04bc2305b593")} ``` -Hyperlink or Picture: -Values @{"HyperlinkField" = "https://pnp.github.com/powershell, PnP PowerShell Home"} +Hyperlink or Picture: ``` -Values @{"HyperlinkField" = "https://pnp.github.com/powershell, PnP PowerShell Home"} ``` ```yaml Type: Hashtable From 053cd81b2450f1331db658de30963cfc80e7bf24 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 20:47:10 +0200 Subject: [PATCH 26/53] Update Add-PnPListItem.md --- documentation/Add-PnPListItem.md | 38 ++++++++++++++++---------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/documentation/Add-PnPListItem.md b/documentation/Add-PnPListItem.md index cd5e13eab..9cb11fa8c 100644 --- a/documentation/Add-PnPListItem.md +++ b/documentation/Add-PnPListItem.md @@ -187,46 +187,46 @@ Accept wildcard characters: False Use the internal names of the fields when specifying field names. -Single line of text: -Values @{"Title" = "Title New"} +Single line of text: ``` -Values @{"Title" = "Title New"} ``` -Multiple lines of text: -Values @{"MultiText" = "New text\n\nMore text"} +Multiple lines of text: ``` -Values @{"MultiText" = "New text\n\nMore text"} ``` -Rich text: -Values @{"MultiText" = "<strong>New</strong> text"} +Rich text: ``` -Values @{"MultiText" = "<strong>New</strong> text"} ``` -Choice: -Values @{"Choice" = "Choice 1"} +Choice: ``` -Values @{"Choice" = "Choice 1"} ``` -Multi-Choice: -Values @{"MultiChoice" = "Choice 1","Choice 2"} +Multi-Choice: ``` -Values @{"MultiChoice" = "Choice 1","Choice 2"} ``` -Number: -Values @{"Number" = "10"} +Number: ``` -Values @{"Number" = "10"} ``` -Currency: -Values @{"Currency" = "10"} +Currency: ``` -Values @{"Currency" = "10"} ``` > [!NOTE] > For numeric and currency fields, when using -Batch, provide the value using the comma and dots matching the regional setting of the site you're adding the listitem to. When not using batch, you must always provide the value in the American notation, so dot for decimals and comma for thousands separators. -Date and Time: -Values @{"DateAndTime" = "03/13/2015 14:16"} +Date and Time: ``` -Values @{"DateAndTime" = "03/13/2015 14:16"} ``` -Lookup (id of lookup value): -Values @{"Lookup" = "2"} +Lookup (id of lookup value): ``` -Values @{"Lookup" = "2"} ``` -Multi value lookup (id of lookup values as array 1): -Values @{"MultiLookupField" = "1","2"} +Multi value lookup (id of lookup values as array 1): ``` -Values @{"MultiLookupField" = "1","2"} ``` -Multi value lookup (id of lookup values as array 2): -Values @{"MultiLookupField" = 1,2} +Multi value lookup (id of lookup values as array 2): ``` -Values @{"MultiLookupField" = 1,2} ``` -Multi value lookup (id of lookup values as string): -Values @{"MultiLookupField" = "1,2"} +Multi value lookup (id of lookup values as string): ``` -Values @{"MultiLookupField" = "1,2"} ``` -Yes/No: -Values @{"YesNo" = $false} +Yes/No: ``` -Values @{"YesNo" = $false} ``` -Person/Group (id of user/group in Site User Info List or email of the user, separate multiple values with a comma): -Values @{"Person" = "user1@domain.com","21"} +Person/Group (id of user/group in Site User Info List or email of the user, separate multiple values with a comma): ``` -Values @{"Person" = "user1@domain.com","21"} ``` -Managed Metadata (single value with path to term): -Values @{"MetadataField" = "CORPORATE|DEPARTMENTS|FINANCE"} +Managed Metadata (single value with path to term): ``` -Values @{"MetadataField" = "CORPORATE|DEPARTMENTS|FINANCE"} ``` -Managed Metadata (single value with id of term): -Values @{"MetadataField" = "fe40a95b-2144-4fa2-b82a-0b3d0299d818"} with Id of term +Managed Metadata (single value with id of term): ``` -Values @{"MetadataField" = "fe40a95b-2144-4fa2-b82a-0b3d0299d818"} with Id of term ``` -Managed Metadata (multiple values with paths to terms): -Values @{"MetadataField" = "CORPORATE|DEPARTMENTS|FINANCE","CORPORATE|DEPARTMENTS|HR"} +Managed Metadata (multiple values with paths to terms): ``` -Values @{"MetadataField" = "CORPORATE|DEPARTMENTS|FINANCE","CORPORATE|DEPARTMENTS|HR"} ``` -Managed Metadata (multiple values with ids of terms): -Values @{"MetadataField" = "fe40a95b-2144-4fa2-b82a-0b3d0299d818","52d88107-c2a8-4bf0-adfa-04bc2305b593"} +Managed Metadata (multiple values with ids of terms): ``` -Values @{"MetadataField" = "fe40a95b-2144-4fa2-b82a-0b3d0299d818","52d88107-c2a8-4bf0-adfa-04bc2305b593"} ``` -Hyperlink or Picture: -Values @{"Hyperlink" = "https://github.com/OfficeDev/, OfficePnP"} +Hyperlink or Picture: ``` -Values @{"Hyperlink" = "https://github.com/OfficeDev/, OfficePnP"} ``` ```yaml Type: Hashtable From 6c8914674ca51e01b0737c6f69164d73ec13bdca Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 20:49:24 +0200 Subject: [PATCH 27/53] Update Add-PnPListItem.md --- documentation/Add-PnPListItem.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/Add-PnPListItem.md b/documentation/Add-PnPListItem.md index 9cb11fa8c..355441cb7 100644 --- a/documentation/Add-PnPListItem.md +++ b/documentation/Add-PnPListItem.md @@ -218,6 +218,8 @@ Yes/No: ``` -Values @{"YesNo" = $false} ``` Person/Group (id of user/group in Site User Info List or email of the user, separate multiple values with a comma): ``` -Values @{"Person" = "user1@domain.com","21"} ``` +**If the user is not present, in the site user information list, you need to add that user using `New-PnPUser` cmdlet.** + Managed Metadata (single value with path to term): ``` -Values @{"MetadataField" = "CORPORATE|DEPARTMENTS|FINANCE"} ``` Managed Metadata (single value with id of term): ``` -Values @{"MetadataField" = "fe40a95b-2144-4fa2-b82a-0b3d0299d818"} with Id of term ``` From 33380fb86d4edfec673c97c642167e16075b4313 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Fri, 19 Jan 2024 20:49:47 +0200 Subject: [PATCH 28/53] Update Set-PnPListItem.md --- documentation/Set-PnPListItem.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/Set-PnPListItem.md b/documentation/Set-PnPListItem.md index 5476a2373..4177bbfff 100644 --- a/documentation/Set-PnPListItem.md +++ b/documentation/Set-PnPListItem.md @@ -249,6 +249,8 @@ Yes/No: ``` -Values @{"YesNoField" = $false} ``` Person/Group (id of user/group in Site User Info List or email of the user, separate multiple values with a comma): ``` -Values @{"PersonField" = "user1@domain.com","21"} ``` +**If the user is not present, in the site user information list, you need to add that user using `New-PnPUser` cmdlet.** + Managed Metadata (single value with path to term): ``` -Values @{"MetadataField" = "CORPORATE|DEPARTMENTS|FINANCE"} ``` Managed Metadata (single value with id of term): ``` -Values @{"MetadataField" = "fe40a95b-2144-4fa2-b82a-0b3d0299d818"} with Id of term ``` From d63d84dbde4d85265c2cb5d5aa89af79d78786a1 Mon Sep 17 00:00:00 2001 From: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Date: Sat, 20 Jan 2024 02:45:41 +0000 Subject: [PATCH 29/53] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 8168 +++++++++-------- version.txt | 2 +- 3 files changed, 4116 insertions(+), 4056 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 9ed1d8eee..38eb1c95f 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -ab0653e7afde0c98b396e659bfdbf1362b93b8cc \ No newline at end of file +65c7879482b4b5de204d6c6ecdd77be2bb37cd77 \ 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 82ffe335a..b022b4974 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9680 +1,9740 @@ [ { + "CommandName": "Add-PnPAlert", "Rank": 1, - "Command": "Add-PnPAlert -List \"Demo List\"", "Id": 1, - "CommandName": "Add-PnPAlert" + "Command": "Add-PnPAlert -List \"Demo List\"" }, { + "CommandName": "Add-PnPAlert", "Rank": 2, - "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" + "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)" }, { + "CommandName": "Add-PnPAlert", "Rank": 3, - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 3, - "CommandName": "Add-PnPAlert" + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPAlert", "Rank": 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": 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))" }, { + "CommandName": "Add-PnPApp", "Rank": 1, - "Command": "Add-PnPApp -Path ./myapp.sppkg", "Id": 5, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { + "CommandName": "Add-PnPApp", "Rank": 2, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Id": 6, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { + "CommandName": "Add-PnPApp", "Rank": 3, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Id": 7, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { + "CommandName": "Add-PnPApp", "Rank": 4, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Id": 8, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { + "CommandName": "Add-PnPApplicationCustomizer", "Rank": 1, - "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" + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}" }, { + "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Id": 10, - "CommandName": "Add-PnPAvailableSiteClassification" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { + "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Id": 11, - "CommandName": "Add-PnPAvailableSiteClassification" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { + "CommandName": "Add-PnPAzureADGroupMember", "Rank": 1, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 12, - "CommandName": "Add-PnPAzureADGroupMember" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPAzureADGroupMember", "Rank": 2, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 13, - "CommandName": "Add-PnPAzureADGroupMember" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { + "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 14, - "CommandName": "Add-PnPAzureADGroupMember" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { + "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 1, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 15, - "CommandName": "Add-PnPAzureADGroupOwner" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 2, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 16, - "CommandName": "Add-PnPAzureADGroupOwner" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { + "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 17, - "CommandName": "Add-PnPAzureADGroupOwner" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 1, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Id": 18, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 2, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Id": 19, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" }, { + "CommandName": "Add-PnPContentType", "Rank": 1, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Id": 20, - "CommandName": "Add-PnPContentType" + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" }, { + "CommandName": "Add-PnPContentType", "Rank": 2, - "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" + "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\"" }, { + "CommandName": "Add-PnPContentType", "Rank": 3, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Id": 22, - "CommandName": "Add-PnPContentType" + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" }, { + "CommandName": "Add-PnPContentType", "Rank": 4, - "Command": "Add-PnPContentType -Name \"Project Item\"", "Id": 23, - "CommandName": "Add-PnPContentType" + "Command": "Add-PnPContentType -Name \"Project Item\"" }, { + "CommandName": "Add-PnPContentType", "Rank": 5, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Id": 24, - "CommandName": "Add-PnPContentType" + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Id": 25, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Id": 26, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { + "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 27, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { + "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 28, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { + "CommandName": "Add-PnPContentTypeToList", "Rank": 1, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Id": 29, - "CommandName": "Add-PnPContentTypeToList" + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" }, { + "CommandName": "Add-PnPCustomAction", "Rank": 1, - "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" + "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`\"}\"" }, { + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 1, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Id": 31, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity", "Id": 32, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity" }, { + "CommandName": "Add-PnPDocumentSet", "Rank": 1, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Id": 33, - "CommandName": "Add-PnPDocumentSet" + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" }, { + "CommandName": "Add-PnPEventReceiver", "Rank": 1, - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "Id": 34, - "CommandName": "Add-PnPEventReceiver" + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" }, { + "CommandName": "Add-PnPEventReceiver", "Rank": 2, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Id": 35, - "CommandName": "Add-PnPEventReceiver" + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" }, { + "CommandName": "Add-PnPEventReceiver", "Rank": 3, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "Id": 36, - "CommandName": "Add-PnPEventReceiver" + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site" }, { + "CommandName": "Add-PnPEventReceiver", "Rank": 4, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Id": 37, - "CommandName": "Add-PnPEventReceiver" + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" }, { + "CommandName": "Add-PnPField", "Rank": 1, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Id": 38, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { + "CommandName": "Add-PnPField", "Rank": 2, - "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" + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"" }, { + "CommandName": "Add-PnPField", "Rank": 3, - "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" + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"" }, { + "CommandName": "Add-PnPField", "Rank": 4, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Id": 41, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { + "CommandName": "Add-PnPField", "Rank": 5, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Id": 42, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { + "CommandName": "Add-PnPField", "Rank": 6, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Id": 43, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { + "CommandName": "Add-PnPFieldToContentType", "Rank": 1, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 44, - "CommandName": "Add-PnPFieldToContentType" + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { + "CommandName": "Add-PnPFile", "Rank": 1, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Id": 45, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { + "CommandName": "Add-PnPFile", "Rank": 2, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Id": 46, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { + "CommandName": "Add-PnPFile", "Rank": 3, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", "Id": 47, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}" }, { + "CommandName": "Add-PnPFile", "Rank": 4, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", "Id": 48, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}" }, { + "CommandName": "Add-PnPFile", "Rank": 5, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", "Id": 49, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}" }, { + "CommandName": "Add-PnPFile", "Rank": 6, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", "Id": 50, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}" }, { + "CommandName": "Add-PnPFile", "Rank": 7, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Id": 51, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { + "CommandName": "Add-PnPFile", "Rank": 8, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Id": 52, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { + "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 1, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 53, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { + "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 2, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Id": 54, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { + "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 3, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 55, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 1, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 56, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Id": 57, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { + "CommandName": "Add-PnPFileSharingInvite", "Rank": 1, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Id": 58, - "CommandName": "Add-PnPFileSharingInvite" + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { + "CommandName": "Add-PnPFileSharingInvite", "Rank": 2, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Id": 59, - "CommandName": "Add-PnPFileSharingInvite" + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { + "CommandName": "Add-PnPFileSharingInvite", "Rank": 3, - "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" + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 1, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Id": 61, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 2, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Id": 62, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 3, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Id": 63, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Id": 64, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Id": 65, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { + "CommandName": "Add-PnPFileUserSharingLink", "Rank": 1, - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 66, - "CommandName": "Add-PnPFileUserSharingLink" + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPFileUserSharingLink", "Rank": 2, - "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" + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPFlowOwner", "Rank": 1, - "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" + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit" }, { + "CommandName": "Add-PnPFlowOwner", "Rank": 2, - "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" + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView" }, { + "CommandName": "Add-PnPFlowOwner", "Rank": 3, - "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" + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare" }, { + "CommandName": "Add-PnPFlowOwner", "Rank": 4, - "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" + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit" }, { + "CommandName": "Add-PnPFolder", "Rank": 1, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 72, - "CommandName": "Add-PnPFolder" + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { + "CommandName": "Add-PnPFolder", "Rank": 2, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Id": 73, - "CommandName": "Add-PnPFolder" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { + "CommandName": "Add-PnPFolder", "Rank": 3, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Id": 74, - "CommandName": "Add-PnPFolder" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 1, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 75, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 2, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Id": 76, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 3, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 77, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" }, { + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 1, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 78, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Id": 79, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { + "CommandName": "Add-PnPFolderSharingInvite", "Rank": 1, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Id": 80, - "CommandName": "Add-PnPFolderSharingInvite" + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { + "CommandName": "Add-PnPFolderSharingInvite", "Rank": 2, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Id": 81, - "CommandName": "Add-PnPFolderSharingInvite" + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { + "CommandName": "Add-PnPFolderSharingInvite", "Rank": 3, - "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" + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { + "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 1, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 83, - "CommandName": "Add-PnPFolderUserSharingLink" + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 2, - "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" + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPGroupMember", "Rank": 1, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 85, - "CommandName": "Add-PnPGroupMember" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { + "CommandName": "Add-PnPGroupMember", "Rank": 2, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Id": 86, - "CommandName": "Add-PnPGroupMember" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { + "CommandName": "Add-PnPHtmlPublishingPageLayout", "Rank": 1, - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 87, - "CommandName": "Add-PnPHtmlPublishingPageLayout" + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { + "CommandName": "Add-PnPHubSiteAssociation", "Rank": 1, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Id": 88, - "CommandName": "Add-PnPHubSiteAssociation" + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" }, { + "CommandName": "Add-PnPHubToHubAssociation", "Rank": 1, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Id": 89, - "CommandName": "Add-PnPHubToHubAssociation" + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { + "CommandName": "Add-PnPHubToHubAssociation", "Rank": 2, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Id": 90, - "CommandName": "Add-PnPHubToHubAssociation" + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { + "CommandName": "Add-PnPHubToHubAssociation", "Rank": 3, - "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" + "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\"" }, { + "CommandName": "Add-PnPJavaScriptBlock", "Rank": 1, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site", "Id": 92, - "CommandName": "Add-PnPJavaScriptBlock" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site" }, { + "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'", "Id": 93, - "CommandName": "Add-PnPJavaScriptBlock" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'" }, { + "CommandName": "Add-PnPJavaScriptLink", "Rank": 1, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Id": 94, - "CommandName": "Add-PnPJavaScriptLink" + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" }, { + "CommandName": "Add-PnPJavaScriptLink", "Rank": 2, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Id": 95, - "CommandName": "Add-PnPJavaScriptLink" + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { + "CommandName": "Add-PnPListDesign", "Rank": 1, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Id": 96, - "CommandName": "Add-PnPListDesign" + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { + "CommandName": "Add-PnPListDesign", "Rank": 2, - "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" + "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\"" }, { + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 1, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Id": 98, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Id": 99, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Id": 100, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { + "CommandName": "Add-PnPListItem", "Rank": 1, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 101, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { + "CommandName": "Add-PnPListItem", "Rank": 2, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 102, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { + "CommandName": "Add-PnPListItem", "Rank": 3, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Id": 103, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { + "CommandName": "Add-PnPListItem", "Rank": 4, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Id": 104, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { + "CommandName": "Add-PnPListItem", "Rank": 5, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Id": 105, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { + "CommandName": "Add-PnPListItemAttachment", "Rank": 1, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Id": 106, - "CommandName": "Add-PnPListItemAttachment" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { + "CommandName": "Add-PnPListItemAttachment", "Rank": 2, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Id": 107, - "CommandName": "Add-PnPListItemAttachment" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { + "CommandName": "Add-PnPListItemAttachment", "Rank": 3, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Id": 108, - "CommandName": "Add-PnPListItemAttachment" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { + "CommandName": "Add-PnPListItemComment", "Rank": 1, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Id": 109, - "CommandName": "Add-PnPListItemComment" + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" }, { + "CommandName": "Add-PnPMasterPage", "Rank": 1, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Id": 110, - "CommandName": "Add-PnPMasterPage" + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" }, { + "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 111, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 112, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 113, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 114, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Id": 115, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" }, { + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Id": 116, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Id": 117, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { + "CommandName": "Add-PnPNavigationNode", "Rank": 1, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Id": 118, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { + "CommandName": "Add-PnPNavigationNode", "Rank": 2, - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "Id": 119, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" }, { + "CommandName": "Add-PnPNavigationNode", "Rank": 3, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Id": 120, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" }, { + "CommandName": "Add-PnPNavigationNode", "Rank": 4, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Id": 121, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { + "CommandName": "Add-PnPNavigationNode", "Rank": 5, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Id": 122, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { + "CommandName": "Add-PnPNavigationNode", "Rank": 6, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Id": 123, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { + "CommandName": "Add-PnPNavigationNode", "Rank": 7, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Id": 124, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { + "CommandName": "Add-PnPNavigationNode", "Rank": 8, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Id": 125, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { + "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 1, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Id": 126, - "CommandName": "Add-PnPOrgAssetsLibrary" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { + "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 2, - "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" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"" }, { + "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Id": 128, - "CommandName": "Add-PnPOrgAssetsLibrary" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { + "CommandName": "Add-PnPOrgNewsSite", "Rank": 1, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Id": 129, - "CommandName": "Add-PnPOrgNewsSite" + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { + "CommandName": "Add-PnPPage", "Rank": 1, - "Command": "Add-PnPPage -Name \"NewPage\"", "Id": 130, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\"" }, { + "CommandName": "Add-PnPPage", "Rank": 2, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Id": 131, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { + "CommandName": "Add-PnPPage", "Rank": 3, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Id": 132, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { + "CommandName": "Add-PnPPage", "Rank": 4, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Id": 133, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { + "CommandName": "Add-PnPPage", "Rank": 5, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Id": 134, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { + "CommandName": "Add-PnPPage", "Rank": 6, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Id": 135, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { + "CommandName": "Add-PnPPage", "Rank": 7, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Id": 136, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { + "CommandName": "Add-PnPPage", "Rank": 8, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Id": 137, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { + "CommandName": "Add-PnPPage", "Rank": 9, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Id": 138, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { + "CommandName": "Add-PnPPage", "Rank": 10, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Id": 139, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { + "CommandName": "Add-PnPPageImageWebPart", "Rank": 1, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Id": 140, - "CommandName": "Add-PnPPageImageWebPart" + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { + "CommandName": "Add-PnPPageImageWebPart", "Rank": 2, - "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" + "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\"" }, { + "CommandName": "Add-PnPPageSection", "Rank": 1, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Id": 142, - "CommandName": "Add-PnPPageSection" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { + "CommandName": "Add-PnPPageSection", "Rank": 2, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Id": 143, - "CommandName": "Add-PnPPageSection" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { + "CommandName": "Add-PnPPageTextPart", "Rank": 1, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Id": 144, - "CommandName": "Add-PnPPageTextPart" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { + "CommandName": "Add-PnPPageTextPart", "Rank": 2, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Id": 145, - "CommandName": "Add-PnPPageTextPart" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { + "CommandName": "Add-PnPPageTextPart", "Rank": 3, - "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" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"" }, { + "CommandName": "Add-PnPPageWebPart", "Rank": 1, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Id": 147, - "CommandName": "Add-PnPPageWebPart" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { + "CommandName": "Add-PnPPageWebPart", "Rank": 2, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Id": 148, - "CommandName": "Add-PnPPageWebPart" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { + "CommandName": "Add-PnPPageWebPart", "Rank": 3, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Id": 149, - "CommandName": "Add-PnPPageWebPart" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { + "CommandName": "Add-PnPPlannerBucket", "Rank": 1, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Id": 150, - "CommandName": "Add-PnPPlannerBucket" + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { + "CommandName": "Add-PnPPlannerBucket", "Rank": 2, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Id": 151, - "CommandName": "Add-PnPPlannerBucket" + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { + "CommandName": "Add-PnPPlannerRoster", "Rank": 1, - "Command": "Add-PnPPlannerRoster", "Id": 152, - "CommandName": "Add-PnPPlannerRoster" + "Command": "Add-PnPPlannerRoster" }, { + "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 153, - "CommandName": "Add-PnPPlannerRosterMember" + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPPlannerTask", "Rank": 1, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 154, - "CommandName": "Add-PnPPlannerTask" + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { + "CommandName": "Add-PnPPlannerTask", "Rank": 2, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 155, - "CommandName": "Add-PnPPlannerTask" + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { + "CommandName": "Add-PnPPlannerTask", "Rank": 3, - "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" + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { + "CommandName": "Add-PnPPublishingImageRendition", "Rank": 1, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 157, - "CommandName": "Add-PnPPublishingImageRendition" + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { + "CommandName": "Add-PnPPublishingPage", "Rank": 1, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Id": 158, - "CommandName": "Add-PnPPublishingPage" + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { + "CommandName": "Add-PnPPublishingPage", "Rank": 2, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Id": 159, - "CommandName": "Add-PnPPublishingPage" + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { + "CommandName": "Add-PnPPublishingPageLayout", "Rank": 1, - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 160, - "CommandName": "Add-PnPPublishingPageLayout" + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { + "CommandName": "Add-PnPRoleDefinition", "Rank": 1, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Id": 161, - "CommandName": "Add-PnPRoleDefinition" + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { + "CommandName": "Add-PnPRoleDefinition", "Rank": 2, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Id": 162, - "CommandName": "Add-PnPRoleDefinition" + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { + "CommandName": "Add-PnPRoleDefinition", "Rank": 3, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Id": 163, - "CommandName": "Add-PnPRoleDefinition" + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { + "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 164, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 2, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 165, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { + "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Id": 166, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "Command": "Add-PnPSiteCollectionAppCatalog", "Id": 167, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "Command": "Add-PnPSiteCollectionAppCatalog" }, { + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 2, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 168, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { + "CommandName": "Add-PnPSiteDesign", "Rank": 1, - "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" + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite" }, { + "CommandName": "Add-PnPSiteDesign", "Rank": 2, - "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" + "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" }, { + "CommandName": "Add-PnPSiteDesign", "Rank": 3, - "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" + "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\"" }, { + "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 1, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Id": 172, - "CommandName": "Add-PnPSiteDesignFromWeb" + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { + "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 2, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Id": 173, - "CommandName": "Add-PnPSiteDesignFromWeb" + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { + "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 3, - "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" + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png" }, { + "CommandName": "Add-PnPSiteDesignTask", "Rank": 1, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 175, - "CommandName": "Add-PnPSiteDesignTask" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { + "CommandName": "Add-PnPSiteDesignTask", "Rank": 2, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 176, - "CommandName": "Add-PnPSiteDesignTask" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { + "CommandName": "Add-PnPSiteScript", "Rank": 1, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Id": 177, - "CommandName": "Add-PnPSiteScript" + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" }, { + "CommandName": "Add-PnPSiteScriptPackage", "Rank": 1, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Id": 178, - "CommandName": "Add-PnPSiteScriptPackage" + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" }, { + "CommandName": "Add-PnPSiteTemplate", "Rank": 1, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Id": 179, - "CommandName": "Add-PnPSiteTemplate" + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { + "CommandName": "Add-PnPStoredCredential", "Rank": 1, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Id": 180, - "CommandName": "Add-PnPStoredCredential" + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { + "CommandName": "Add-PnPStoredCredential", "Rank": 2, - "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" + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { + "CommandName": "Add-PnPStoredCredential", "Rank": 3, - "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" + "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\"" }, { + "CommandName": "Add-PnPTaxonomyField", "Rank": 1, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Id": 183, - "CommandName": "Add-PnPTaxonomyField" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { + "CommandName": "Add-PnPTaxonomyField", "Rank": 2, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Id": 184, - "CommandName": "Add-PnPTaxonomyField" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { + "CommandName": "Add-PnPTeamsChannel", "Rank": 1, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Id": 185, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { + "CommandName": "Add-PnPTeamsChannel", "Rank": 2, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Id": 186, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { + "CommandName": "Add-PnPTeamsChannel", "Rank": 3, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Id": 187, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { + "CommandName": "Add-PnPTeamsChannel", "Rank": 4, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Id": 188, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { + "CommandName": "Add-PnpTeamsChannelUser", "Rank": 1, - "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" + "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner" }, { + "CommandName": "Add-PnpTeamsChannelUser", "Rank": 2, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Id": 190, - "CommandName": "Add-PnpTeamsChannelUser" + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" }, { + "CommandName": "Add-PnPTeamsTab", "Rank": 1, - "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" + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"" }, { + "CommandName": "Add-PnPTeamsTab", "Rank": 2, - "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" + "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\"" }, { + "CommandName": "Add-PnPTeamsTab", "Rank": 3, - "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" + "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\"" }, { + "CommandName": "Add-PnPTeamsTab", "Rank": 4, - "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" + "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" }, { + "CommandName": "Add-PnPTeamsTeam", "Rank": 1, - "Command": "Add-PnPTeamsTeam", "Id": 195, - "CommandName": "Add-PnPTeamsTeam" + "Command": "Add-PnPTeamsTeam" }, { + "CommandName": "Add-PnPTeamsUser", "Rank": 1, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 196, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { + "CommandName": "Add-PnPTeamsUser", "Rank": 2, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Id": 197, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { + "CommandName": "Add-PnPTeamsUser", "Rank": 3, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Id": 198, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { + "CommandName": "Add-PnPTeamsUser", "Rank": 4, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Id": 199, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { + "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 200, - "CommandName": "Add-PnPTenantCdnOrigin" + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { + "CommandName": "Add-PnPTenantSequence", "Rank": 1, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Id": 201, - "CommandName": "Add-PnPTenantSequence" + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { + "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Id": 202, - "CommandName": "Add-PnPTenantSequenceSite" + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { + "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Id": 203, - "CommandName": "Add-PnPTenantSequenceSubSite" + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { + "CommandName": "Add-PnPTermToTerm", "Rank": 1, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Id": 204, - "CommandName": "Add-PnPTermToTerm" + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" }, { + "CommandName": "Add-PnPView", "Rank": 1, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Id": 205, - "CommandName": "Add-PnPView" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { + "CommandName": "Add-PnPView", "Rank": 2, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Id": 206, - "CommandName": "Add-PnPView" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { + "CommandName": "Add-PnPView", "Rank": 3, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", "Id": 207, - "CommandName": "Add-PnPView" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"" }, { + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 1, - "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" + "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\"" }, { + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 2, - "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" + "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\"" }, { + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 3, - "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" + "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\"" }, { + "CommandName": "Add-PnPWebhookSubscription", "Rank": 1, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Id": 211, - "CommandName": "Add-PnPWebhookSubscription" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { + "CommandName": "Add-PnPWebhookSubscription", "Rank": 2, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Id": 212, - "CommandName": "Add-PnPWebhookSubscription" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { + "CommandName": "Add-PnPWebhookSubscription", "Rank": 3, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "Id": 213, - "CommandName": "Add-PnPWebhookSubscription" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" }, { + "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 1, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Id": 214, - "CommandName": "Add-PnPWebPartToWebPartPage" + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1" }, { + "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 2, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Id": 215, - "CommandName": "Add-PnPWebPartToWebPartPage" + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { + "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 1, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Id": 216, - "CommandName": "Add-PnPWebPartToWikiPage" + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1" }, { + "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 2, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Id": 217, - "CommandName": "Add-PnPWebPartToWikiPage" + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" }, { + "CommandName": "Add-PnPWikiPage", "Rank": 1, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Id": 218, - "CommandName": "Add-PnPWikiPage" + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { + "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Id": 219, - "CommandName": "Clear-PnPAzureADGroupMember" + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { + "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Id": 220, - "CommandName": "Clear-PnPAzureADGroupOwner" + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { + "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Id": 221, - "CommandName": "Clear-PnPDefaultColumnValues" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { + "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Id": 222, - "CommandName": "Clear-PnPDefaultColumnValues" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { + "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 223, - "CommandName": "Clear-PnPListItemAsRecord" + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Id": 224, - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Id": 225, - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 226, - "CommandName": "Clear-PnpRecycleBinItem" + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Id": 227, - "CommandName": "Clear-PnpRecycleBinItem" + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Id": 228, - "CommandName": "Clear-PnpRecycleBinItem" + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "Command": "Clear-PnPTenantAppCatalogUrl", "Id": 229, - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "Command": "Clear-PnPTenantAppCatalogUrl" }, { + "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 1, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 230, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { + "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 231, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { + "CommandName": "Connect-PnPOnline", "Rank": 1, - "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" + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"" }, { + "CommandName": "Convert-PnPFile", "Rank": 1, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", "Id": 233, - "CommandName": "Convert-PnPFile" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream" }, { + "CommandName": "Convert-PnPFile", "Rank": 2, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", "Id": 234, - "CommandName": "Convert-PnPFile" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"" }, { + "CommandName": "Convert-PnPFile", "Rank": 3, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", "Id": 235, - "CommandName": "Convert-PnPFile" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"" }, { + "CommandName": "Convert-PnPFile", "Rank": 4, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", "Id": 236, - "CommandName": "Convert-PnPFile" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force" }, { + "CommandName": "Convert-PnPFile", "Rank": 5, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", "Id": 237, - "CommandName": "Convert-PnPFile" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"" }, { + "CommandName": "Convert-PnPFile", "Rank": 6, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", "Id": 238, - "CommandName": "Convert-PnPFile" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"" }, { + "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Id": 239, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { + "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Id": 240, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { + "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, - "Command": "Convert-PnPSiteTemplate -Path template.xml", "Id": 241, - "CommandName": "Convert-PnPSiteTemplate" + "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { + "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Id": 242, - "CommandName": "Convert-PnPSiteTemplate" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { + "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Id": 243, - "CommandName": "Convert-PnPSiteTemplate" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Id": 244, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Id": 245, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 1, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Id": 246, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 2, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Id": 247, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 3, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Id": 248, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 4, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Id": 249, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 5, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 250, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 6, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Id": 251, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 7, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Id": 252, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 8, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite", "Id": 253, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 9, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 254, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 10, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Id": 255, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 11, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Id": 256, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 12, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 257, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 13, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 258, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { + "CommandName": "ConvertTo-PnPPage", "Rank": 14, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Id": 259, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { + "CommandName": "Copy-PnPFile", "Rank": 1, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 260, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { + "CommandName": "Copy-PnPFile", "Rank": 2, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 261, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { + "CommandName": "Copy-PnPFile", "Rank": 3, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 262, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { + "CommandName": "Copy-PnPFile", "Rank": 4, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 263, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { + "CommandName": "Copy-PnPFile", "Rank": 5, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 264, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { + "CommandName": "Copy-PnPFile", "Rank": 6, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 265, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { + "CommandName": "Copy-PnPFile", "Rank": 7, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 266, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { + "CommandName": "Copy-PnPFile", "Rank": 8, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 267, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { + "CommandName": "Copy-PnPFile", "Rank": 9, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 268, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { + "CommandName": "Copy-PnPFile", "Rank": 10, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 269, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { + "CommandName": "Copy-PnPFolder", "Rank": 1, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 270, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { + "CommandName": "Copy-PnPFolder", "Rank": 2, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 271, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { + "CommandName": "Copy-PnPFolder", "Rank": 3, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 272, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { + "CommandName": "Copy-PnPFolder", "Rank": 4, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 273, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { + "CommandName": "Copy-PnPFolder", "Rank": 5, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 274, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { + "CommandName": "Copy-PnPFolder", "Rank": 6, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 275, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { + "CommandName": "Copy-PnPFolder", "Rank": 7, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 276, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { + "CommandName": "Copy-PnPFolder", "Rank": 8, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 277, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { + "CommandName": "Copy-PnPFolder", "Rank": 9, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 278, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { + "CommandName": "Copy-PnPFolder", "Rank": 10, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 279, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { + "CommandName": "Copy-PnPItemProxy", "Rank": 1, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Id": 280, - "CommandName": "Copy-PnPItemProxy" + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { + "CommandName": "Copy-PnPList", "Rank": 1, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Id": 281, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { + "CommandName": "Copy-PnPList", "Rank": 2, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Id": 282, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { + "CommandName": "Copy-PnPList", "Rank": 3, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Id": 283, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { + "CommandName": "Copy-PnPList", "Rank": 4, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Id": 284, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { + "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Id": 285, - "CommandName": "Copy-PnPTeamsTeam" + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { + "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Id": 286, - "CommandName": "Copy-PnPTeamsTeam" + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { + "CommandName": "Copy-PnPTeamsTeam", "Rank": 3, - "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": 287, - "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" }, { + "CommandName": "Copy-PnPTeamsTeam", "Rank": 4, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Id": 288, - "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" }, { + "CommandName": "Disable-PnPFeature", "Rank": 1, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 289, - "CommandName": "Disable-PnPFeature" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { + "CommandName": "Disable-PnPFeature", "Rank": 2, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 290, - "CommandName": "Disable-PnPFeature" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { + "CommandName": "Disable-PnPFeature", "Rank": 3, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 291, - "CommandName": "Disable-PnPFeature" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { + "CommandName": "Disable-PnPPageScheduling", "Rank": 1, - "Command": "Disable-PnPPageScheduling", "Id": 292, - "CommandName": "Disable-PnPPageScheduling" + "Command": "Disable-PnPPageScheduling" }, { + "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "Command": "Disable-PnPPowerShellTelemetry", "Id": 293, - "CommandName": "Disable-PnPPowerShellTelemetry" + "Command": "Disable-PnPPowerShellTelemetry" }, { + "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, - "Command": "Disable-PnPPowerShellTelemetry -Force", "Id": 294, - "CommandName": "Disable-PnPPowerShellTelemetry" + "Command": "Disable-PnPPowerShellTelemetry -Force" }, { + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Command": "Disable-PnPSharingForNonOwnersOfSite", "Id": 295, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { + "CommandName": "Disable-PnPSiteClassification", "Rank": 1, - "Command": "Disable-PnPSiteClassification", "Id": 296, - "CommandName": "Disable-PnPSiteClassification" + "Command": "Disable-PnPSiteClassification" }, { + "CommandName": "Disconnect-PnPOnline", "Rank": 1, - "Command": "Disconnect-PnPOnline", "Id": 297, - "CommandName": "Disconnect-PnPOnline" + "Command": "Disconnect-PnPOnline" }, { + "CommandName": "Enable-PnPCommSite", "Rank": 1, - "Command": "Enable-PnPCommSite", "Id": 298, - "CommandName": "Enable-PnPCommSite" + "Command": "Enable-PnPCommSite" }, { + "CommandName": "Enable-PnPCommSite", "Rank": 2, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Id": 299, - "CommandName": "Enable-PnPCommSite" + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { + "CommandName": "Enable-PnPFeature", "Rank": 1, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 300, - "CommandName": "Enable-PnPFeature" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { + "CommandName": "Enable-PnPFeature", "Rank": 2, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 301, - "CommandName": "Enable-PnPFeature" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { + "CommandName": "Enable-PnPFeature", "Rank": 3, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 302, - "CommandName": "Enable-PnPFeature" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { + "CommandName": "Enable-PnPPageScheduling", "Rank": 1, - "Command": "Enable-PnPPageScheduling", "Id": 303, - "CommandName": "Enable-PnPPageScheduling" + "Command": "Enable-PnPPageScheduling" }, { + "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "Command": "Enable-PnPPowerShellTelemetry", "Id": 304, - "CommandName": "Enable-PnPPowerShellTelemetry" + "Command": "Enable-PnPPowerShellTelemetry" }, { + "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, - "Command": "Enable-PnPPowerShellTelemetry -Force", "Id": 305, - "CommandName": "Enable-PnPPowerShellTelemetry" + "Command": "Enable-PnPPowerShellTelemetry -Force" }, { + "CommandName": "Enable-PnPSiteClassification", "Rank": 1, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Id": 306, - "CommandName": "Enable-PnPSiteClassification" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { + "CommandName": "Enable-PnPSiteClassification", "Rank": 2, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 307, - "CommandName": "Enable-PnPSiteClassification" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { + "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Id": 308, - "CommandName": "Export-PnPListToSiteTemplate" + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { + "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Id": 309, - "CommandName": "Export-PnPListToSiteTemplate" + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { + "CommandName": "Export-PnPPage", "Rank": 1, - "Command": "Export-PnPPage -Identity Home.aspx", "Id": 310, - "CommandName": "Export-PnPPage" + "Command": "Export-PnPPage -Identity Home.aspx" }, { + "CommandName": "Export-PnPPageMapping", "Rank": 1, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Id": 311, - "CommandName": "Export-PnPPageMapping" + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { + "CommandName": "Export-PnPPageMapping", "Rank": 2, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Id": 312, - "CommandName": "Export-PnPPageMapping" + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { + "CommandName": "Export-PnPPageMapping", "Rank": 3, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Id": 313, - "CommandName": "Export-PnPPageMapping" + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { + "CommandName": "Export-PnPTaxonomy", "Rank": 1, - "Command": "Export-PnPTaxonomy", "Id": 314, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy" }, { + "CommandName": "Export-PnPTaxonomy", "Rank": 2, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Id": 315, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { + "CommandName": "Export-PnPTaxonomy", "Rank": 3, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Id": 316, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { + "CommandName": "Export-PnPTaxonomy", "Rank": 4, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Id": 317, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { + "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, - "Command": "Export-PnPTermGroupToXml", "Id": 318, - "CommandName": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml" }, { + "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, - "Command": "Export-PnPTermGroupToXml -Out output.xml", "Id": 319, - "CommandName": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { + "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Id": 320, - "CommandName": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { + "CommandName": "Export-PnPUserInfo", "Rank": 1, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 321, - "CommandName": "Export-PnPUserInfo" + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { + "CommandName": "Export-PnPUserInfo", "Rank": 2, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Id": 322, - "CommandName": "Export-PnPUserInfo" + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { + "CommandName": "Export-PnPUserProfile", "Rank": 1, - "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Id": 323, - "CommandName": "Export-PnPUserProfile" + "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { + "CommandName": "Export-PnPUserProfile", "Rank": 2, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Id": 324, - "CommandName": "Export-PnPUserProfile" + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { + "CommandName": "Find-PnPFile", "Rank": 1, - "Command": "Find-PnPFile -Match *.master", "Id": 325, - "CommandName": "Find-PnPFile" + "Command": "Find-PnPFile -Match *.master" }, { + "CommandName": "Find-PnPFile", "Rank": 2, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Id": 326, - "CommandName": "Find-PnPFile" + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { + "CommandName": "Find-PnPFile", "Rank": 3, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Id": 327, - "CommandName": "Find-PnPFile" + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { + "CommandName": "Get-PnPAccessToken", "Rank": 1, - "Command": "Get-PnPAccessToken", "Id": 328, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken" }, { + "CommandName": "Get-PnPAccessToken", "Rank": 2, - "Command": "Get-PnPAccessToken -Decoded", "Id": 329, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -Decoded" }, { + "CommandName": "Get-PnPAccessToken", "Rank": 3, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Id": 330, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { + "CommandName": "Get-PnPAccessToken", "Rank": 4, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Id": 331, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { + "CommandName": "Get-PnPAccessToken", "Rank": 5, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Id": 332, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { + "CommandName": "Get-PnPAlert", "Rank": 1, - "Command": "Get-PnPAlert", "Id": 333, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert" }, { + "CommandName": "Get-PnPAlert", "Rank": 2, - "Command": "Get-PnPAlert -List \"Demo List\"", "Id": 334, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -List \"Demo List\"" }, { + "CommandName": "Get-PnPAlert", "Rank": 3, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 335, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { + "CommandName": "Get-PnPAlert", "Rank": 4, - "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Id": 336, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { + "CommandName": "Get-PnPAlert", "Rank": 5, - "Command": "Get-PnPAlert -AllUsers", "Id": 337, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -AllUsers" }, { + "CommandName": "Get-PnPAlert", "Rank": 6, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Id": 338, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { + "CommandName": "Get-PnPApp", "Rank": 1, - "Command": "Get-PnPApp", "Id": 339, - "CommandName": "Get-PnPApp" + "Command": "Get-PnPApp" }, { + "CommandName": "Get-PnPApp", "Rank": 2, - "Command": "Get-PnPApp -Scope Site", "Id": 340, - "CommandName": "Get-PnPApp" + "Command": "Get-PnPApp -Scope Site" }, { + "CommandName": "Get-PnPApp", "Rank": 3, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 341, - "CommandName": "Get-PnPApp" + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { + "CommandName": "Get-PnPAppErrors", "Rank": 1, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Id": 342, - "CommandName": "Get-PnPAppErrors" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { + "CommandName": "Get-PnPAppErrors", "Rank": 2, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Id": 343, - "CommandName": "Get-PnPAppErrors" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { + "CommandName": "Get-PnPAppInfo", "Rank": 1, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Id": 344, - "CommandName": "Get-PnPAppInfo" + "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { + "CommandName": "Get-PnPAppInfo", "Rank": 2, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 345, - "CommandName": "Get-PnPAppInfo" + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { + "CommandName": "Get-PnPAppInfo", "Rank": 3, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Id": 346, - "CommandName": "Get-PnPAppInfo" + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, - "Command": "Get-PnPApplicationCustomizer", "Id": 347, - "CommandName": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer" }, { + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 348, - "CommandName": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Id": 349, - "CommandName": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { + "CommandName": "Get-PnPAuditing", "Rank": 1, - "Command": "Get-PnPAuditing", "Id": 350, - "CommandName": "Get-PnPAuditing" + "Command": "Get-PnPAuditing" }, { + "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, - "Command": "Get-PnPAuthenticationRealm", "Id": 351, - "CommandName": "Get-PnPAuthenticationRealm" + "Command": "Get-PnPAuthenticationRealm" }, { + "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Id": 352, - "CommandName": "Get-PnPAuthenticationRealm" + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { + "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, - "Command": "Get-PnPAvailableLanguage", "Id": 353, - "CommandName": "Get-PnPAvailableLanguage" + "Command": "Get-PnPAvailableLanguage" }, { + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "Command": "Get-PnPAvailableSensitivityLabel", "Id": 354, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel" }, { + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Id": 355, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Id": 356, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { + "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, - "Command": "Get-PnPAvailableSiteClassification", "Id": 357, - "CommandName": "Get-PnPAvailableSiteClassification" + "Command": "Get-PnPAvailableSiteClassification" }, { + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, - "Command": "Get-PnPAzureACSPrincipal", "Id": 358, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal" }, { + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Id": 359, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Id": 360, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Id": 361, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 362, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Id": 363, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Id": 364, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "Command": "Get-PnPAzureADActivityReportSignIn", "Id": 365, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn" }, { + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Id": 366, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Id": 367, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { + "CommandName": "Get-PnPAzureADApp", "Rank": 1, - "Command": "Get-PnPAzureADApp", "Id": 368, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp" }, { + "CommandName": "Get-PnPAzureADApp", "Rank": 2, - "Command": "Get-PnPAzureADApp -Identity MyApp", "Id": 369, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp -Identity MyApp" }, { + "CommandName": "Get-PnPAzureADApp", "Rank": 3, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 370, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { + "CommandName": "Get-PnPAzureADApp", "Rank": 4, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Id": 371, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, - "Command": "Get-PnPAzureADAppPermission", "Id": 372, - "CommandName": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission" }, { + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Id": 373, - "CommandName": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 374, - "CommandName": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "Command": "Get-PnPAzureADAppSitePermission", "Id": 375, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission" }, { + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Id": 376, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Id": 377, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Id": 378, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Id": 379, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { + "CommandName": "Get-PnPAzureADGroup", "Rank": 1, - "Command": "Get-PnPAzureADGroup", "Id": 380, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup" }, { + "CommandName": "Get-PnPAzureADGroup", "Rank": 2, - "Command": "Get-PnPAzureADGroup -Identity $groupId", "Id": 381, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { + "CommandName": "Get-PnPAzureADGroup", "Rank": 3, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Id": 382, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { + "CommandName": "Get-PnPAzureADGroup", "Rank": 4, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Id": 383, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { + "CommandName": "Get-PnPAzureADGroup", "Rank": 5, - "Command": "Get-PnPAzureADGroup -Identity $group", "Id": 384, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $group" }, { + "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Id": 385, - "CommandName": "Get-PnPAzureADGroupMember" + "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { + "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, - "Command": "Get-PnPAzureADGroupMember -Identity $group", "Id": 386, - "CommandName": "Get-PnPAzureADGroupMember" + "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { + "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Id": 387, - "CommandName": "Get-PnPAzureADGroupOwner" + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { + "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, - "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Id": 388, - "CommandName": "Get-PnPAzureADGroupOwner" + "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipal", "Id": 389, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal" }, { + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Id": 390, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Id": 391, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Id": 392, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Id": 393, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 394, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 395, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 396, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Id": 397, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { + "CommandName": "Get-PnPAzureADUser", "Rank": 1, - "Command": "Get-PnPAzureADUser", "Id": 398, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser" }, { + "CommandName": "Get-PnPAzureADUser", "Rank": 2, - "Command": "Get-PnPAzureADUser -EndIndex 50", "Id": 399, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -EndIndex 50" }, { + "CommandName": "Get-PnPAzureADUser", "Rank": 3, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 400, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { + "CommandName": "Get-PnPAzureADUser", "Rank": 4, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Id": 401, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { + "CommandName": "Get-PnPAzureADUser", "Rank": 5, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Id": 402, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { + "CommandName": "Get-PnPAzureADUser", "Rank": 6, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Id": 403, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { + "CommandName": "Get-PnPAzureADUser", "Rank": 7, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Id": 404, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { + "CommandName": "Get-PnPAzureADUser", "Rank": 8, - "Command": "Get-PnPAzureADUser -Delta", "Id": 405, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Delta" }, { + "CommandName": "Get-PnPAzureADUser", "Rank": 9, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Id": 406, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { + "CommandName": "Get-PnPAzureADUser", "Rank": 10, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Id": 407, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { + "CommandName": "Get-PnPAzureCertificate", "Rank": 1, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Id": 408, - "CommandName": "Get-PnPAzureCertificate" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { + "CommandName": "Get-PnPAzureCertificate", "Rank": 2, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Id": 409, - "CommandName": "Get-PnPAzureCertificate" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { + "CommandName": "Get-PnPAzureCertificate", "Rank": 3, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Id": 410, - "CommandName": "Get-PnPAzureCertificate" + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { + "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, - "Command": "Get-PnPBrowserIdleSignout", "Id": 411, - "CommandName": "Get-PnPBrowserIdleSignout" + "Command": "Get-PnPBrowserIdleSignout" }, { + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Id": 412, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "Command": "Get-PnPBuiltInDesignPackageVisibility", "Id": 413, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "Command": "Get-PnPBuiltInSiteTemplateSettings", "Id": 414, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Id": 415, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Id": 416, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Id": 417, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Id": 418, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { + "CommandName": "Get-PnPChangeLog", "Rank": 1, - "Command": "Get-PnPChangeLog", "Id": 419, - "CommandName": "Get-PnPChangeLog" + "Command": "Get-PnPChangeLog" }, { + "CommandName": "Get-PnPChangeLog", "Rank": 2, - "Command": "Get-PnPChangeLog -Nightly", "Id": 420, - "CommandName": "Get-PnPChangeLog" + "Command": "Get-PnPChangeLog -Nightly" }, { + "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Id": 421, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { + "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Id": 422, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { + "CommandName": "Get-PnPContainer", "Rank": 1, - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", "Id": 423, - "CommandName": "Get-PnPContainer" + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996" }, { + "CommandName": "Get-PnPContainer", "Rank": 2, - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "Id": 424, - "CommandName": "Get-PnPContainer" + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { + "CommandName": "Get-PnPContainer", "Rank": 3, - "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", "Id": 425, - "CommandName": "Get-PnPContainer" + "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" }, { + "CommandName": "Get-PnPContainerTypeConfiguration", "Rank": 1, - "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", "Id": 426, - "CommandName": "Get-PnPContainerTypeConfiguration" + "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996" }, { + "CommandName": "Get-PnPContentType", "Rank": 1, - "Command": "Get-PnPContentType", "Id": 427, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType" }, { + "CommandName": "Get-PnPContentType", "Rank": 2, - "Command": "Get-PnPContentType -InSiteHierarchy", "Id": 428, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -InSiteHierarchy" }, { + "CommandName": "Get-PnPContentType", "Rank": 3, - "Command": "Get-PnPContentType -Identity \"Project Document\"", "Id": 429, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { + "CommandName": "Get-PnPContentType", "Rank": 4, - "Command": "Get-PnPContentType -List \"Documents\"", "Id": 430, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -List \"Documents\"" }, { + "CommandName": "Get-PnPContentType", "Rank": 5, - "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "Id": 431, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -Includes \"SchemaXml\"" }, { + "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Id": 432, - "CommandName": "Get-PnPContentTypePublishingStatus" + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { + "CommandName": "Get-PnPCustomAction", "Rank": 1, - "Command": "Get-PnPCustomAction", "Id": 433, - "CommandName": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction" }, { + "CommandName": "Get-PnPCustomAction", "Rank": 2, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 434, - "CommandName": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { + "CommandName": "Get-PnPCustomAction", "Rank": 3, - "Command": "Get-PnPCustomAction -Scope web", "Id": 435, - "CommandName": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction -Scope web" }, { + "CommandName": "Get-PnPDeletedContainer", "Rank": 1, - "Command": "Get-PnPDeletedContainer", "Id": 436, - "CommandName": "Get-PnPDeletedContainer" + "Command": "Get-PnPDeletedContainer" }, { + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "Command": "Get-PnPDeletedMicrosoft365Group", "Id": 437, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "Command": "Get-PnPDeletedMicrosoft365Group" }, { + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 438, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { + "CommandName": "Get-PnPDeletedTeam", "Rank": 1, - "Command": "Get-PnPDeletedTeam", "Id": 439, - "CommandName": "Get-PnPDeletedTeam" + "Command": "Get-PnPDeletedTeam" }, { + "CommandName": "Get-PnPDiagnostics", "Rank": 1, - "Command": "Get-PnPDiagnostics", "Id": 440, - "CommandName": "Get-PnPDiagnostics" + "Command": "Get-PnPDiagnostics" }, { + "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, - "Command": "Get-PnPDisableSpacesActivation", "Id": 441, - "CommandName": "Get-PnPDisableSpacesActivation" + "Command": "Get-PnPDisableSpacesActivation" }, { + "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Id": 442, - "CommandName": "Get-PnPDocumentSetTemplate" + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { + "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Id": 443, - "CommandName": "Get-PnPDocumentSetTemplate" + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { + "CommandName": "Get-PnPEventReceiver", "Rank": 1, - "Command": "Get-PnPEventReceiver", "Id": 444, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver" }, { + "CommandName": "Get-PnPEventReceiver", "Rank": 2, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 445, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { + "CommandName": "Get-PnPEventReceiver", "Rank": 3, - "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Id": 446, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { + "CommandName": "Get-PnPEventReceiver", "Rank": 4, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Id": 447, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { + "CommandName": "Get-PnPEventReceiver", "Rank": 5, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 448, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { + "CommandName": "Get-PnPEventReceiver", "Rank": 6, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Id": 449, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { + "CommandName": "Get-PnPEventReceiver", "Rank": 7, - "Command": "Get-PnPEventReceiver -Scope Site", "Id": 450, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Scope Site" }, { + "CommandName": "Get-PnPEventReceiver", "Rank": 8, - "Command": "Get-PnPEventReceiver -Scope Web", "Id": 451, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Scope Web" }, { + "CommandName": "Get-PnPEventReceiver", "Rank": 9, - "Command": "Get-PnPEventReceiver -Scope All", "Id": 452, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Scope All" }, { + "CommandName": "Get-PnPException", "Rank": 1, - "Command": "Get-PnPException", "Id": 453, - "CommandName": "Get-PnPException" + "Command": "Get-PnPException" }, { + "CommandName": "Get-PnPException", "Rank": 2, - "Command": "Get-PnPException -All", "Id": 454, - "CommandName": "Get-PnPException" + "Command": "Get-PnPException -All" }, { + "CommandName": "Get-PnPExternalUser", "Rank": 1, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Id": 455, - "CommandName": "Get-PnPExternalUser" + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { + "CommandName": "Get-PnPExternalUser", "Rank": 2, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Id": 456, - "CommandName": "Get-PnPExternalUser" + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { + "CommandName": "Get-PnPFeature", "Rank": 1, - "Command": "Get-PnPFeature", "Id": 457, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature" }, { + "CommandName": "Get-PnPFeature", "Rank": 2, - "Command": "Get-PnPFeature -Scope Site", "Id": 458, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature -Scope Site" }, { + "CommandName": "Get-PnPFeature", "Rank": 3, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 459, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { + "CommandName": "Get-PnPFeature", "Rank": 4, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Id": 460, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { + "CommandName": "Get-PnPField", "Rank": 1, - "Command": "Get-PnPField", "Id": 461, - "CommandName": "Get-PnPField" + "Command": "Get-PnPField" }, { + "CommandName": "Get-PnPField", "Rank": 2, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 462, - "CommandName": "Get-PnPField" + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { + "CommandName": "Get-PnPField", "Rank": 3, - "Command": "Get-PnPField -Group \"Custom Columns\"", "Id": 463, - "CommandName": "Get-PnPField" + "Command": "Get-PnPField -Group \"Custom Columns\"" }, { + "CommandName": "Get-PnPFile", "Rank": 1, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Id": 464, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { + "CommandName": "Get-PnPFile", "Rank": 2, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Id": 465, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { + "CommandName": "Get-PnPFile", "Rank": 3, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Id": 466, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { + "CommandName": "Get-PnPFile", "Rank": 4, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Id": 467, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { + "CommandName": "Get-PnPFile", "Rank": 5, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Id": 468, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { + "CommandName": "Get-PnPFile", "Rank": 6, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Id": 469, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { + "CommandName": "Get-PnPFile", "Rank": 7, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Id": 470, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { + "CommandName": "Get-PnPFileAnalyticsData", "Rank": 1, - "Command": "Get-PnPFileInFolder", "Id": 471, - "CommandName": "Get-PnPFileInFolder" + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"" }, { + "CommandName": "Get-PnPFileAnalyticsData", "Rank": 2, - "Command": "Get-PnPFileInFolder -Recurse", "Id": 472, - "CommandName": "Get-PnPFileInFolder" + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays" }, { + "CommandName": "Get-PnPFileAnalyticsData", "Rank": 3, - "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", "Id": 473, - "CommandName": "Get-PnPFileInFolder" + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { - "Rank": 4, - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFileInFolder", + "Rank": 1, "Id": 474, - "CommandName": "Get-PnPFileInFolder" + "Command": "Get-PnPFileInFolder" }, { - "Rank": 5, - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", + "CommandName": "Get-PnPFileInFolder", + "Rank": 2, "Id": 475, - "CommandName": "Get-PnPFileInFolder" + "Command": "Get-PnPFileInFolder -Recurse" }, { - "Rank": 1, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Get-PnPFileInFolder", + "Rank": 3, "Id": 476, - "CommandName": "Get-PnPFileSharingLink" + "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"" }, { - "Rank": 1, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "CommandName": "Get-PnPFileInFolder", + "Rank": 4, "Id": 477, - "CommandName": "Get-PnPFileVersion" + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Rank": 2, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "CommandName": "Get-PnPFileInFolder", + "Rank": 5, "Id": 478, - "CommandName": "Get-PnPFileVersion" + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { + "CommandName": "Get-PnPFileSharingLink", "Rank": 1, - "Command": "Get-PnPFlow -AsAdmin", "Id": 479, - "CommandName": "Get-PnPFlow" + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Rank": 2, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "CommandName": "Get-PnPFileVersion", + "Rank": 1, "Id": 480, - "CommandName": "Get-PnPFlow" + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "Rank": 3, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "CommandName": "Get-PnPFileVersion", + "Rank": 2, "Id": 481, - "CommandName": "Get-PnPFlow" + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { + "CommandName": "Get-PnPFlow", "Rank": 1, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Id": 482, - "CommandName": "Get-PnPFlowOwner" + "Command": "Get-PnPFlow -AsAdmin" }, { - "Rank": 1, - "Command": "Get-PnPFolder", + "CommandName": "Get-PnPFlow", + "Rank": 2, "Id": 483, - "CommandName": "Get-PnPFolder" + "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "Rank": 2, - "Command": "Get-PnPFolder -CurrentWebRootFolder", + "CommandName": "Get-PnPFlow", + "Rank": 3, "Id": 484, - "CommandName": "Get-PnPFolder" + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "Rank": 3, - "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "CommandName": "Get-PnPFlowOwner", + "Rank": 1, "Id": 485, - "CommandName": "Get-PnPFolder" + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "Rank": 4, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "CommandName": "Get-PnPFolder", + "Rank": 1, "Id": 486, - "CommandName": "Get-PnPFolder" + "Command": "Get-PnPFolder" }, { - "Rank": 5, - "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", + "CommandName": "Get-PnPFolder", + "Rank": 2, "Id": 487, - "CommandName": "Get-PnPFolder" + "Command": "Get-PnPFolder -CurrentWebRootFolder" }, { - "Rank": 6, - "Command": "Get-PnPFolder -List \"Shared Documents\"", + "CommandName": "Get-PnPFolder", + "Rank": 3, "Id": 488, - "CommandName": "Get-PnPFolder" + "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "Rank": 1, - "Command": "Get-PnPFolderInFolder", + "CommandName": "Get-PnPFolder", + "Rank": 4, "Id": 489, - "CommandName": "Get-PnPFolderInFolder" + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "Rank": 2, - "Command": "Get-PnPFolderInFolder -Recurse", + "CommandName": "Get-PnPFolder", + "Rank": 5, "Id": 490, - "CommandName": "Get-PnPFolderInFolder" + "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"" }, { - "Rank": 3, - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolder", + "Rank": 6, "Id": 491, - "CommandName": "Get-PnPFolderInFolder" + "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "Rank": 4, - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "CommandName": "Get-PnPFolderInFolder", + "Rank": 1, "Id": 492, - "CommandName": "Get-PnPFolderInFolder" + "Command": "Get-PnPFolderInFolder" }, { - "Rank": 5, - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "CommandName": "Get-PnPFolderInFolder", + "Rank": 2, "Id": 493, - "CommandName": "Get-PnPFolderInFolder" + "Command": "Get-PnPFolderInFolder -Recurse" }, { - "Rank": 6, - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", + "CommandName": "Get-PnPFolderInFolder", + "Rank": 3, "Id": 494, - "CommandName": "Get-PnPFolderInFolder" + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"" }, { - "Rank": 1, - "Command": "Get-PnPFolderItem", + "CommandName": "Get-PnPFolderInFolder", + "Rank": 4, "Id": 495, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "Rank": 2, - "Command": "Get-PnPFolderItem -Recurse", + "CommandName": "Get-PnPFolderInFolder", + "Rank": 5, "Id": 496, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "Rank": 3, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderInFolder", + "Rank": 6, "Id": 497, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { - "Rank": 4, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderItem", + "Rank": 1, "Id": 498, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem" }, { - "Rank": 5, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "CommandName": "Get-PnPFolderItem", + "Rank": 2, "Id": 499, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem -Recurse" }, { - "Rank": 6, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderItem", + "Rank": 3, "Id": 500, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "Rank": 1, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Get-PnPFolderItem", + "Rank": 4, "Id": 501, - "CommandName": "Get-PnPFolderSharingLink" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Rank": 1, - "Command": "Get-PnPFolderStorageMetric", + "CommandName": "Get-PnPFolderItem", + "Rank": 5, "Id": 502, - "CommandName": "Get-PnPFolderStorageMetric" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "Rank": 2, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "CommandName": "Get-PnPFolderItem", + "Rank": 6, "Id": 503, - "CommandName": "Get-PnPFolderStorageMetric" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Rank": 3, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "CommandName": "Get-PnPFolderSharingLink", + "Rank": 1, "Id": 504, - "CommandName": "Get-PnPFolderStorageMetric" + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { + "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, - "Command": "Get-PnPFooter", "Id": 505, - "CommandName": "Get-PnPFooter" + "Command": "Get-PnPFolderStorageMetric" }, { - "Rank": 1, - "Command": "Get-PnPGraphAccessToken", + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 2, "Id": 506, - "CommandName": "Get-PnPGraphAccessToken" + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "Rank": 2, - "Command": "Get-PnPGraphAccessToken -Decoded", + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 3, "Id": 507, - "CommandName": "Get-PnPGraphAccessToken" + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { + "CommandName": "Get-PnPFooter", "Rank": 1, - "Command": "Get-PnPGraphSubscription", "Id": 508, - "CommandName": "Get-PnPGraphSubscription" + "Command": "Get-PnPFooter" }, { - "Rank": 2, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPGraphAccessToken", + "Rank": 1, "Id": 509, - "CommandName": "Get-PnPGraphSubscription" + "Command": "Get-PnPGraphAccessToken" }, { - "Rank": 1, - "Command": "Get-PnPGroup", + "CommandName": "Get-PnPGraphAccessToken", + "Rank": 2, "Id": 510, - "CommandName": "Get-PnPGroup" + "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "Rank": 2, - "Command": "Get-PnPGroup -Identity 'My Site Users'", + "CommandName": "Get-PnPGraphSubscription", + "Rank": 1, "Id": 511, - "CommandName": "Get-PnPGroup" + "Command": "Get-PnPGraphSubscription" }, { - "Rank": 3, - "Command": "Get-PnPGroup -AssociatedMemberGroup", + "CommandName": "Get-PnPGraphSubscription", + "Rank": 2, "Id": 512, - "CommandName": "Get-PnPGroup" + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { + "CommandName": "Get-PnPGroup", "Rank": 1, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Id": 513, - "CommandName": "Get-PnPGroupMember" + "Command": "Get-PnPGroup" }, { + "CommandName": "Get-PnPGroup", "Rank": 2, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Id": 514, - "CommandName": "Get-PnPGroupMember" + "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "Rank": 1, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "CommandName": "Get-PnPGroup", + "Rank": 3, "Id": 515, - "CommandName": "Get-PnPGroupPermissions" + "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { + "CommandName": "Get-PnPGroupMember", "Rank": 1, - "Command": "Get-PnPHideDefaultThemes", "Id": 516, - "CommandName": "Get-PnPHideDefaultThemes" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "Rank": 1, - "Command": "Get-PnPHomePage", + "CommandName": "Get-PnPGroupMember", + "Rank": 2, "Id": 517, - "CommandName": "Get-PnPHomePage" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { + "CommandName": "Get-PnPGroupPermissions", "Rank": 1, - "Command": "Get-PnPHomeSite", "Id": 518, - "CommandName": "Get-PnPHomeSite" + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "Rank": 2, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "CommandName": "Get-PnPHideDefaultThemes", + "Rank": 1, "Id": 519, - "CommandName": "Get-PnPHomeSite" + "Command": "Get-PnPHideDefaultThemes" }, { - "Rank": 3, - "Command": "Get-PnPHomeSite -Detailed", + "CommandName": "Get-PnPHomePage", + "Rank": 1, "Id": 520, - "CommandName": "Get-PnPHomeSite" + "Command": "Get-PnPHomePage" }, { + "CommandName": "Get-PnPHomeSite", "Rank": 1, - "Command": "Get-PnPHubSite", "Id": 521, - "CommandName": "Get-PnPHubSite" + "Command": "Get-PnPHomeSite" }, { + "CommandName": "Get-PnPHomeSite", "Rank": 2, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 522, - "CommandName": "Get-PnPHubSite" + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { + "CommandName": "Get-PnPHomeSite", "Rank": 3, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Id": 523, - "CommandName": "Get-PnPHubSite" + "Command": "Get-PnPHomeSite -Detailed" }, { + "CommandName": "Get-PnPHubSite", "Rank": 1, - "Command": "Get-PnPHubSiteChild", "Id": 524, - "CommandName": "Get-PnPHubSiteChild" + "Command": "Get-PnPHubSite" }, { + "CommandName": "Get-PnPHubSite", "Rank": 2, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 525, - "CommandName": "Get-PnPHubSiteChild" + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 1, - "Command": "Get-PnPInPlaceRecordsManagement", + "CommandName": "Get-PnPHubSite", + "Rank": 3, "Id": 526, - "CommandName": "Get-PnPInPlaceRecordsManagement" + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { + "CommandName": "Get-PnPHubSiteChild", "Rank": 1, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Id": 527, - "CommandName": "Get-PnPIsSiteAliasAvailable" + "Command": "Get-PnPHubSiteChild" }, { - "Rank": 1, - "Command": "Get-PnPJavaScriptLink", + "CommandName": "Get-PnPHubSiteChild", + "Rank": 2, "Id": 528, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 2, - "Command": "Get-PnPJavaScriptLink -Scope All", + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Rank": 1, "Id": 529, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPInPlaceRecordsManagement" }, { - "Rank": 3, - "Command": "Get-PnPJavaScriptLink -Scope Web", + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Rank": 1, "Id": 530, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "Rank": 4, - "Command": "Get-PnPJavaScriptLink -Scope Site", + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 1, "Id": 531, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPJavaScriptLink" }, { - "Rank": 5, - "Command": "Get-PnPJavaScriptLink -Name Test", + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 2, "Id": 532, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "Rank": 1, - "Command": "Get-PnPKnowledgeHubSite", + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 3, "Id": 533, - "CommandName": "Get-PnPKnowledgeHubSite" + "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "Rank": 1, - "Command": "Get-PnPLabel", + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 4, "Id": 534, - "CommandName": "Get-PnPLabel" + "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "Rank": 2, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 5, "Id": 535, - "CommandName": "Get-PnPLabel" + "Command": "Get-PnPJavaScriptLink -Name Test" }, { + "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Id": 536, - "CommandName": "Get-PnPLargeListOperationStatus" + "Command": "Get-PnPKnowledgeHubSite" }, { + "CommandName": "Get-PnPLabel", "Rank": 1, - "Command": "Get-PnPList", "Id": 537, - "CommandName": "Get-PnPList" + "Command": "Get-PnPLabel" }, { + "CommandName": "Get-PnPLabel", "Rank": 2, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 538, - "CommandName": "Get-PnPList" + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "Rank": 3, - "Command": "Get-PnPList -Identity Lists/Announcements", + "CommandName": "Get-PnPLargeListOperationStatus", + "Rank": 1, "Id": 539, - "CommandName": "Get-PnPList" + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "Rank": 4, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "CommandName": "Get-PnPList", + "Rank": 1, "Id": 540, - "CommandName": "Get-PnPList" + "Command": "Get-PnPList" }, { - "Rank": 5, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "CommandName": "Get-PnPList", + "Rank": 2, "Id": 541, - "CommandName": "Get-PnPList" + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 1, - "Command": "Get-PnPListDesign", + "CommandName": "Get-PnPList", + "Rank": 3, "Id": 542, - "CommandName": "Get-PnPListDesign" + "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "Rank": 2, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPList", + "Rank": 4, "Id": 543, - "CommandName": "Get-PnPListDesign" + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "Rank": 3, - "Command": "Get-PnPListDesign -Identity ListEvent", + "CommandName": "Get-PnPList", + "Rank": 5, "Id": 544, - "CommandName": "Get-PnPListDesign" + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { + "CommandName": "Get-PnPListDesign", "Rank": 1, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Id": 545, - "CommandName": "Get-PnPListInformationRightsManagement" + "Command": "Get-PnPListDesign" }, { - "Rank": 1, - "Command": "Get-PnPListItem -List Tasks", + "CommandName": "Get-PnPListDesign", + "Rank": 2, "Id": 546, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 2, - "Command": "Get-PnPListItem -List Tasks -Id 1", + "CommandName": "Get-PnPListDesign", + "Rank": 3, "Id": 547, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "Rank": 3, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "CommandName": "Get-PnPListInformationRightsManagement", + "Rank": 1, "Id": 548, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "Rank": 4, - "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"", + "CommandName": "Get-PnPListItem", + "Rank": 1, "Id": 549, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks" }, { - "Rank": 5, - "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"", + "CommandName": "Get-PnPListItem", + "Rank": 2, "Id": 550, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "Rank": 6, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "CommandName": "Get-PnPListItem", + "Rank": 3, "Id": 551, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "Rank": 7, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "CommandName": "Get-PnPListItem", + "Rank": 4, "Id": 552, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"" }, { - "Rank": 8, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "CommandName": "Get-PnPListItem", + "Rank": 5, "Id": 553, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"" }, { - "Rank": 9, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "CommandName": "Get-PnPListItem", + "Rank": 6, "Id": 554, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "Rank": 1, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "CommandName": "Get-PnPListItem", + "Rank": 7, "Id": 555, - "CommandName": "Get-PnPListItemAttachment" + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "Rank": 2, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "CommandName": "Get-PnPListItem", + "Rank": 8, "Id": 556, - "CommandName": "Get-PnPListItemAttachment" + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "Rank": 1, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "CommandName": "Get-PnPListItem", + "Rank": 9, "Id": 557, - "CommandName": "Get-PnPListItemComment" + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { + "CommandName": "Get-PnPListItemAttachment", "Rank": 1, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Id": 558, - "CommandName": "Get-PnPListItemPermission" + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "Rank": 1, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "CommandName": "Get-PnPListItemAttachment", + "Rank": 2, "Id": 559, - "CommandName": "Get-PnPListItemVersion" + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { + "CommandName": "Get-PnPListItemComment", "Rank": 1, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Id": 560, - "CommandName": "Get-PnPListPermissions" + "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "Rank": 2, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "CommandName": "Get-PnPListItemPermission", + "Rank": 1, "Id": 561, - "CommandName": "Get-PnPListPermissions" + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { + "CommandName": "Get-PnPListItemVersion", "Rank": 1, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Id": 562, - "CommandName": "Get-PnPListRecordDeclaration" + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { + "CommandName": "Get-PnPListPermissions", "Rank": 1, - "Command": "Get-PnPMasterPage", "Id": 563, - "CommandName": "Get-PnPMasterPage" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "Rank": 1, - "Command": "Get-PnPMessageCenterAnnouncement", + "CommandName": "Get-PnPListPermissions", + "Rank": 2, "Id": 564, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Rank": 2, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "CommandName": "Get-PnPListRecordDeclaration", + "Rank": 1, "Id": 565, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { + "CommandName": "Get-PnPMasterPage", "Rank": 1, - "Command": "Get-PnPMicrosoft365ExpiringGroup", "Id": 566, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "Command": "Get-PnPMasterPage" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 1, "Id": 567, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "Command": "Get-PnPMessageCenterAnnouncement" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365Group", + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 2, "Id": 568, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1, "Id": 569, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 2, "Id": 570, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "Rank": 4, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 1, "Id": 571, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group" }, { - "Rank": 5, - "Command": "Get-PnPMicrosoft365Group -Identity $group", + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 2, "Id": 572, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "Rank": 6, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 3, "Id": 573, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupEndpoint", + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 4, "Id": 574, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 5, "Id": 575, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 6, "Id": 576, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Id": 577, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Id": 578, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Id": 579, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { + "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Id": 580, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { + "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Id": 581, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettings", + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 3, "Id": 582, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 1, "Id": 583, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 2, "Id": 584, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1, "Id": 585, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupTeam", + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 2, "Id": 586, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1, "Id": 587, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 2, "Id": 588, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 589, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Command": "Get-PnPMicrosoft365GroupTeam" }, { + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Id": 590, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 591, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "Command": "Get-PnPNavigationNode", "Id": 592, - "CommandName": "Get-PnPNavigationNode" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, - "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Id": 593, - "CommandName": "Get-PnPNavigationNode" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Id": 594, - "CommandName": "Get-PnPNavigationNode" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { + "CommandName": "Get-PnPNavigationNode", "Rank": 1, - "Command": "Get-PnPOrgAssetsLibrary", "Id": 595, - "CommandName": "Get-PnPOrgAssetsLibrary" + "Command": "Get-PnPNavigationNode" }, { - "Rank": 1, - "Command": "Get-PnPOrgNewsSite", + "CommandName": "Get-PnPNavigationNode", + "Rank": 2, "Id": 596, - "CommandName": "Get-PnPOrgNewsSite" + "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "Rank": 1, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "CommandName": "Get-PnPNavigationNode", + "Rank": 3, "Id": 597, - "CommandName": "Get-PnPPage" + "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "Rank": 2, - "Command": "Get-PnPPage \"MyPage\"", + "CommandName": "Get-PnPOrgAssetsLibrary", + "Rank": 1, "Id": 598, - "CommandName": "Get-PnPPage" + "Command": "Get-PnPOrgAssetsLibrary" }, { - "Rank": 3, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "CommandName": "Get-PnPOrgNewsSite", + "Rank": 1, "Id": 599, - "CommandName": "Get-PnPPage" + "Command": "Get-PnPOrgNewsSite" }, { - "Rank": 4, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "CommandName": "Get-PnPPage", + "Rank": 1, "Id": 600, - "CommandName": "Get-PnPPage" + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "Rank": 1, - "Command": "Get-PnPPageComponent -Page Home", + "CommandName": "Get-PnPPage", + "Rank": 2, "Id": 601, - "CommandName": "Get-PnPPageComponent" + "Command": "Get-PnPPage \"MyPage\"" }, { - "Rank": 2, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPPage", + "Rank": 3, "Id": 602, - "CommandName": "Get-PnPPageComponent" + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "Rank": 3, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "CommandName": "Get-PnPPage", + "Rank": 4, "Id": 603, - "CommandName": "Get-PnPPageComponent" + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { + "CommandName": "Get-PnPPageComponent", "Rank": 1, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 604, - "CommandName": "Get-PnPPlannerBucket" + "Command": "Get-PnPPageComponent -Page Home" }, { - "Rank": 1, - "Command": "Get-PnPPlannerConfiguration", + "CommandName": "Get-PnPPageComponent", + "Rank": 2, "Id": 605, - "CommandName": "Get-PnPPlannerConfiguration" + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 1, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "CommandName": "Get-PnPPageComponent", + "Rank": 3, "Id": 606, - "CommandName": "Get-PnPPlannerPlan" + "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "Rank": 2, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "CommandName": "Get-PnPPlannerBucket", + "Rank": 1, "Id": 607, - "CommandName": "Get-PnPPlannerPlan" + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Rank": 3, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "CommandName": "Get-PnPPlannerConfiguration", + "Rank": 1, "Id": 608, - "CommandName": "Get-PnPPlannerPlan" + "Command": "Get-PnPPlannerConfiguration" }, { + "CommandName": "Get-PnPPlannerPlan", "Rank": 1, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 609, - "CommandName": "Get-PnPPlannerRosterMember" + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "Rank": 1, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "CommandName": "Get-PnPPlannerPlan", + "Rank": 2, "Id": 610, - "CommandName": "Get-PnPPlannerRosterPlan" + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "Rank": 2, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerPlan", + "Rank": 3, "Id": 611, - "CommandName": "Get-PnPPlannerRosterPlan" + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { + "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 612, - "CommandName": "Get-PnPPlannerTask" + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Rank": 2, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 1, "Id": 613, - "CommandName": "Get-PnPPlannerTask" + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "Rank": 3, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 2, "Id": 614, - "CommandName": "Get-PnPPlannerTask" + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { + "CommandName": "Get-PnPPlannerTask", "Rank": 1, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 615, - "CommandName": "Get-PnPPlannerUserPolicy" + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Rank": 1, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "CommandName": "Get-PnPPlannerTask", + "Rank": 2, "Id": 616, - "CommandName": "Get-PnPPowerPlatformConnector" + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Rank": 1, - "Command": "Get-PnPPowerPlatformEnvironment", + "CommandName": "Get-PnPPlannerTask", + "Rank": 3, "Id": 617, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Rank": 2, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "CommandName": "Get-PnPPlannerUserPolicy", + "Rank": 1, "Id": 618, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 3, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "CommandName": "Get-PnPPowerPlatformConnector", + "Rank": 1, "Id": 619, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { + "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "Command": "Get-PnPPowerShellTelemetryEnabled", "Id": 620, - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "Command": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 1, - "Command": "Get-PnPPropertyBag", + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 2, "Id": 621, - "CommandName": "Get-PnPPropertyBag" + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "Rank": 2, - "Command": "Get-PnPPropertyBag -Key MyKey", + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 3, "Id": 622, - "CommandName": "Get-PnPPropertyBag" + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "Rank": 3, - "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "CommandName": "Get-PnPPowerPlatformSolution", + "Rank": 1, "Id": 623, - "CommandName": "Get-PnPPropertyBag" + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Rank": 4, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "CommandName": "Get-PnPPowerPlatformSolution", + "Rank": 2, "Id": 624, - "CommandName": "Get-PnPPropertyBag" + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'" }, { - "Rank": 5, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, "Id": 625, - "CommandName": "Get-PnPPropertyBag" + "Command": "Get-PnPPowerShellTelemetryEnabled" }, { + "CommandName": "Get-PnPPropertyBag", "Rank": 1, - "Command": "Get-PnPPublishingImageRendition", "Id": 626, - "CommandName": "Get-PnPPublishingImageRendition" + "Command": "Get-PnPPropertyBag" }, { + "CommandName": "Get-PnPPropertyBag", "Rank": 2, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Id": 627, - "CommandName": "Get-PnPPublishingImageRendition" + "Command": "Get-PnPPropertyBag -Key MyKey" }, { + "CommandName": "Get-PnPPropertyBag", "Rank": 3, - "Command": "Get-PnPPublishingImageRendition -Identity 2", "Id": 628, - "CommandName": "Get-PnPPublishingImageRendition" + "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "Rank": 1, - "Command": "Get-PnPRecycleBinItem", + "CommandName": "Get-PnPPropertyBag", + "Rank": 4, "Id": 629, - "CommandName": "Get-PnPRecycleBinItem" + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "Rank": 2, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "CommandName": "Get-PnPPropertyBag", + "Rank": 5, "Id": 630, - "CommandName": "Get-PnPRecycleBinItem" + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "Rank": 3, - "Command": "Get-PnPRecycleBinItem -FirstStage", + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 1, "Id": 631, - "CommandName": "Get-PnPRecycleBinItem" + "Command": "Get-PnPPublishingImageRendition" }, { - "Rank": 4, - "Command": "Get-PnPRecycleBinItem -SecondStage", + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 2, "Id": 632, - "CommandName": "Get-PnPRecycleBinItem" + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "Rank": 5, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 3, "Id": 633, - "CommandName": "Get-PnPRecycleBinItem" + "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { + "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, - "Command": "Get-PnPRequestAccessEmails", "Id": 634, - "CommandName": "Get-PnPRequestAccessEmails" + "Command": "Get-PnPRecycleBinItem" }, { - "Rank": 1, - "Command": "Get-PnPRetentionLabel", + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 2, "Id": 635, - "CommandName": "Get-PnPRetentionLabel" + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "Rank": 2, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 3, "Id": 636, - "CommandName": "Get-PnPRetentionLabel" + "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "Rank": 1, - "Command": "Get-PnPRoleDefinition", + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 4, "Id": 637, - "CommandName": "Get-PnPRoleDefinition" + "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "Rank": 2, - "Command": "Get-PnPRoleDefinition -Identity Read", + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 5, "Id": 638, - "CommandName": "Get-PnPRoleDefinition" + "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "Rank": 3, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "CommandName": "Get-PnPRequestAccessEmails", + "Rank": 1, "Id": 639, - "CommandName": "Get-PnPRoleDefinition" + "Command": "Get-PnPRequestAccessEmails" }, { + "CommandName": "Get-PnPRetentionLabel", "Rank": 1, - "Command": "Get-PnPSearchConfiguration", "Id": 640, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPRetentionLabel" }, { + "CommandName": "Get-PnPRetentionLabel", "Rank": 2, - "Command": "Get-PnPSearchConfiguration -Scope Site", "Id": 641, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { - "Rank": 3, - "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "CommandName": "Get-PnPRoleDefinition", + "Rank": 1, "Id": 642, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPRoleDefinition" }, { - "Rank": 4, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Get-PnPRoleDefinition", + "Rank": 2, "Id": 643, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "Rank": 5, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "CommandName": "Get-PnPRoleDefinition", + "Rank": 3, "Id": 644, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "Rank": 6, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 1, "Id": 645, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration" }, { - "Rank": 7, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 2, "Id": 646, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "Rank": 8, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 3, "Id": 647, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "Rank": 1, - "Command": "Get-PnPSearchCrawlLog", + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 4, "Id": 648, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Rank": 2, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 5, "Id": 649, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "Rank": 3, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 6, "Id": 650, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "Rank": 4, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 7, "Id": 651, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "Rank": 5, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 8, "Id": 652, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "Rank": 6, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 1, "Id": 653, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog" }, { - "Rank": 7, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 2, "Id": 654, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "Rank": 1, - "Command": "Get-PnPSearchSettings", + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 3, "Id": 655, - "CommandName": "Get-PnPSearchSettings" + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "Rank": 1, - "Command": "Get-PnPServiceCurrentHealth", + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 4, "Id": 656, - "CommandName": "Get-PnPServiceCurrentHealth" + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "Rank": 2, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 5, "Id": 657, - "CommandName": "Get-PnPServiceCurrentHealth" + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "Rank": 1, - "Command": "Get-PnPServiceHealthIssue", + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 6, "Id": 658, - "CommandName": "Get-PnPServiceHealthIssue" + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "Rank": 2, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 7, "Id": 659, - "CommandName": "Get-PnPServiceHealthIssue" + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { + "CommandName": "Get-PnPSearchSettings", "Rank": 1, - "Command": "Get-PnPSharePointAddIn", "Id": 660, - "CommandName": "Get-PnPSharePointAddIn" + "Command": "Get-PnPSearchSettings" }, { - "Rank": 2, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 1, "Id": 661, - "CommandName": "Get-PnPSharePointAddIn" + "Command": "Get-PnPServiceCurrentHealth" }, { - "Rank": 1, - "Command": "Get-PnPSharingForNonOwnersOfSite", + "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 2, "Id": 662, - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { + "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, - "Command": "Get-PnPSite", "Id": 663, - "CommandName": "Get-PnPSite" + "Command": "Get-PnPServiceHealthIssue" }, { + "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Id": 664, - "CommandName": "Get-PnPSite" + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { + "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, - "Command": "Get-PnPSiteClosure", "Id": 665, - "CommandName": "Get-PnPSiteClosure" + "Command": "Get-PnPSharePointAddIn" }, { - "Rank": 1, - "Command": "Get-PnPSiteCollectionAdmin", + "CommandName": "Get-PnPSharePointAddIn", + "Rank": 2, "Id": 666, - "CommandName": "Get-PnPSiteCollectionAdmin" + "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { + "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Command": "Get-PnPSiteCollectionAppCatalog", "Id": 667, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "Rank": 2, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "CommandName": "Get-PnPSite", + "Rank": 1, "Id": 668, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Command": "Get-PnPSite" }, { - "Rank": 3, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "CommandName": "Get-PnPSite", + "Rank": 2, "Id": 669, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { + "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 1, - "Command": "Get-PnPSiteCollectionTermStore", "Id": 670, - "CommandName": "Get-PnPSiteCollectionTermStore" + "Command": "Get-PnPSiteAnalyticsData -All" }, { - "Rank": 1, - "Command": "Get-PnPSiteDesign", + "CommandName": "Get-PnPSiteAnalyticsData", + "Rank": 2, "Id": 671, - "CommandName": "Get-PnPSiteDesign" + "Command": "Get-PnPSiteAnalyticsData -LastSevenDays" }, { - "Rank": 2, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteAnalyticsData", + "Rank": 3, "Id": 672, - "CommandName": "Get-PnPSiteDesign" + "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { - "Rank": 1, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteAnalyticsData", + "Rank": 4, "Id": 673, - "CommandName": "Get-PnPSiteDesignRights" + "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { + "CommandName": "Get-PnPSiteClosure", "Rank": 1, - "Command": "Get-PnPSiteDesignRun", "Id": 674, - "CommandName": "Get-PnPSiteDesignRun" + "Command": "Get-PnPSiteClosure" }, { - "Rank": 2, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteCollectionAdmin", + "Rank": 1, "Id": 675, - "CommandName": "Get-PnPSiteDesignRun" + "Command": "Get-PnPSiteCollectionAdmin" }, { + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 676, - "CommandName": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteCollectionAppCatalog" }, { + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, - "Command": "Get-PnPSiteDesignTask", "Id": 677, - "CommandName": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 678, - "CommandName": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { + "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "Command": "Get-PnPSiteGroup", "Id": 679, - "CommandName": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteCollectionTermStore" }, { - "Rank": 2, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteDesign", + "Rank": 1, "Id": 680, - "CommandName": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteDesign" }, { - "Rank": 3, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "CommandName": "Get-PnPSiteDesign", + "Rank": 2, "Id": 681, - "CommandName": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 4, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteDesignRights", + "Rank": 1, "Id": 682, - "CommandName": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { + "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, - "Command": "Get-PnPSitePolicy", "Id": 683, - "CommandName": "Get-PnPSitePolicy" + "Command": "Get-PnPSiteDesignRun" }, { + "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, - "Command": "Get-PnPSitePolicy -AllAvailable", "Id": 684, - "CommandName": "Get-PnPSitePolicy" + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "Rank": 3, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 1, "Id": 685, - "CommandName": "Get-PnPSitePolicy" + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Rank": 1, - "Command": "Get-PnPSiteScript", + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 2, "Id": 686, - "CommandName": "Get-PnPSiteScript" + "Command": "Get-PnPSiteDesignTask" }, { - "Rank": 2, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 3, "Id": 687, - "CommandName": "Get-PnPSiteScript" + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { + "CommandName": "Get-PnPSiteGroup", "Rank": 1, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Id": 688, - "CommandName": "Get-PnPSiteScriptFromList" + "Command": "Get-PnPSiteGroup" }, { + "CommandName": "Get-PnPSiteGroup", "Rank": 2, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Id": 689, - "CommandName": "Get-PnPSiteScriptFromList" + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { + "CommandName": "Get-PnPSiteGroup", "Rank": 3, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Id": 690, - "CommandName": "Get-PnPSiteScriptFromList" + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "Rank": 1, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "CommandName": "Get-PnPSiteGroup", + "Rank": 4, "Id": 691, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Rank": 2, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "CommandName": "Get-PnPSitePolicy", + "Rank": 1, "Id": 692, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSitePolicy" }, { - "Rank": 3, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "CommandName": "Get-PnPSitePolicy", + "Rank": 2, "Id": 693, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "Rank": 4, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "CommandName": "Get-PnPSitePolicy", + "Rank": 3, "Id": 694, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Rank": 5, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "CommandName": "Get-PnPSiteScript", + "Rank": 1, "Id": 695, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSiteScript" }, { - "Rank": 6, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "CommandName": "Get-PnPSiteScript", + "Rank": 2, "Id": 696, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { + "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, - "Command": "Get-PnPSiteSearchQueryResults", "Id": 697, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { + "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Id": 698, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { + "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Id": 699, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "Rank": 4, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 1, "Id": 700, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "Rank": 5, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 2, "Id": 701, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "Rank": 6, - "Command": "Get-PnPSiteSearchQueryResults -All", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 3, "Id": 702, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "Rank": 1, - "Command": "Get-PnPSiteSensitivityLabel", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 4, "Id": 703, - "CommandName": "Get-PnPSiteSensitivityLabel" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "Rank": 1, - "Command": "Get-PnPSiteSetVersionPolicyProgress", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 5, "Id": 704, - "CommandName": "Get-PnPSiteSetVersionPolicyProgress" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "Rank": 1, - "Command": "Get-PnPSiteTemplate -Out template.pnp", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 6, "Id": 705, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "Rank": 2, - "Command": "Get-PnPSiteTemplate -Out template.xml", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 1, "Id": 706, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 3, - "Command": "Get-PnPSiteTemplate -Out template.md", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 2, "Id": 707, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "Rank": 4, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 3, "Id": 708, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "Rank": 5, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 4, "Id": 709, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "Rank": 6, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 5, "Id": 710, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "Rank": 7, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 6, "Id": 711, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "Rank": 8, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "CommandName": "Get-PnPSiteSensitivityLabel", + "Rank": 1, "Id": 712, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteSensitivityLabel" }, { - "Rank": 9, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteSetVersionPolicyProgress", + "Rank": 1, "Id": 713, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteSetVersionPolicyProgress" }, { - "Rank": 10, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 1, "Id": 714, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "Rank": 11, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 2, "Id": 715, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "Rank": 12, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 3, "Id": 716, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "Rank": 13, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 4, "Id": 717, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "Rank": 14, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 5, "Id": 718, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "Rank": 1, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 6, "Id": 719, - "CommandName": "Get-PnPSiteUserInvitations" + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "Rank": 1, - "Command": "Get-PnPSiteVersionPolicy", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 7, "Id": 720, - "CommandName": "Get-PnPSiteVersionPolicy" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "Rank": 1, - "Command": "Get-PnPStorageEntity", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 8, "Id": 721, - "CommandName": "Get-PnPStorageEntity" + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "Rank": 2, - "Command": "Get-PnPStorageEntity -Key MyKey", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 9, "Id": 722, - "CommandName": "Get-PnPStorageEntity" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "Rank": 3, - "Command": "Get-PnPStorageEntity -Scope Site", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 10, "Id": 723, - "CommandName": "Get-PnPStorageEntity" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "Rank": 4, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 11, "Id": 724, - "CommandName": "Get-PnPStorageEntity" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "Rank": 1, - "Command": "Get-PnPStoredCredential -Name O365", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 12, "Id": 725, - "CommandName": "Get-PnPStoredCredential" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 13, "Id": 726, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Get-PnPSiteTemplate", + "Rank": 14, "Id": 727, - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { + "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Id": 728, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { + "CommandName": "Get-PnPSiteVersionPolicy", "Rank": 1, - "Command": "Get-PnPSubWeb", "Id": 729, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPSiteVersionPolicy" }, { - "Rank": 2, - "Command": "Get-PnPSubWeb -Recurse", + "CommandName": "Get-PnPStorageEntity", + "Rank": 1, "Id": 730, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPStorageEntity" }, { - "Rank": 3, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "CommandName": "Get-PnPStorageEntity", + "Rank": 2, "Id": 731, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "Rank": 4, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "CommandName": "Get-PnPStorageEntity", + "Rank": 3, "Id": 732, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPStorageEntity -Scope Site" }, { - "Rank": 5, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "CommandName": "Get-PnPStorageEntity", + "Rank": 4, "Id": 733, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { + "CommandName": "Get-PnPStoredCredential", "Rank": 1, - "Command": "Get-PnPSyntexModel", "Id": 734, - "CommandName": "Get-PnPSyntexModel" + "Command": "Get-PnPStoredCredential -Name O365" }, { - "Rank": 2, - "Command": "Get-PnPSyntexModel -Identity 1", + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Rank": 1, "Id": 735, - "CommandName": "Get-PnPSyntexModel" + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Rank": 3, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Rank": 1, "Id": 736, - "CommandName": "Get-PnPSyntexModel" + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Id": 737, - "CommandName": "Get-PnPSyntexModelPublication" + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { + "CommandName": "Get-PnPSubWeb", "Rank": 1, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Id": 738, - "CommandName": "Get-PnPTaxonomyItem" + "Command": "Get-PnPSubWeb" }, { - "Rank": 1, - "Command": "Get-PnPTeamsApp", + "CommandName": "Get-PnPSubWeb", + "Rank": 2, "Id": 739, - "CommandName": "Get-PnPTeamsApp" + "Command": "Get-PnPSubWeb -Recurse" }, { - "Rank": 2, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "CommandName": "Get-PnPSubWeb", + "Rank": 3, "Id": 740, - "CommandName": "Get-PnPTeamsApp" + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "Rank": 3, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "CommandName": "Get-PnPSubWeb", + "Rank": 4, "Id": 741, - "CommandName": "Get-PnPTeamsApp" + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "CommandName": "Get-PnPSubWeb", + "Rank": 5, "Id": 742, - "CommandName": "Get-PnPTeamsChannel" + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "CommandName": "Get-PnPSyntexModel", + "Rank": 1, "Id": 743, - "CommandName": "Get-PnPTeamsChannel" + "Command": "Get-PnPSyntexModel" }, { - "Rank": 3, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPSyntexModel", + "Rank": 2, "Id": 744, - "CommandName": "Get-PnPTeamsChannel" + "Command": "Get-PnPSyntexModel -Identity 1" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "CommandName": "Get-PnPSyntexModel", + "Rank": 3, "Id": 745, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPSyntexModelPublication", + "Rank": 1, "Id": 746, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { + "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Id": 747, - "CommandName": "Get-PnPTeamsChannelMessage" + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "CommandName": "Get-PnPTeamsApp", + "Rank": 1, "Id": 748, - "CommandName": "Get-PnPTeamsChannelMessage" + "Command": "Get-PnPTeamsApp" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "CommandName": "Get-PnPTeamsApp", + "Rank": 2, "Id": 749, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "CommandName": "Get-PnPTeamsApp", + "Rank": 3, "Id": 750, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { + "CommandName": "Get-PnPTeamsChannel", "Rank": 1, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Id": 751, - "CommandName": "Get-PnPTeamsChannelUser" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { + "CommandName": "Get-PnPTeamsChannel", "Rank": 2, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Id": 752, - "CommandName": "Get-PnPTeamsChannelUser" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { + "CommandName": "Get-PnPTeamsChannel", "Rank": 3, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Id": 753, - "CommandName": "Get-PnPTeamsChannelUser" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Rank": 4, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 1, "Id": 754, - "CommandName": "Get-PnPTeamsChannelUser" + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "Rank": 1, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 2, "Id": 755, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Rank": 2, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 1, "Id": 756, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "Rank": 1, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 2, "Id": 757, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "Rank": 2, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 1, "Id": 758, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "Rank": 3, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 2, "Id": 759, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "Rank": 4, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 1, "Id": 760, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "Rank": 5, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 2, "Id": 761, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "Rank": 1, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 3, "Id": 762, - "CommandName": "Get-PnPTeamsTag" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "Rank": 2, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 4, "Id": 763, - "CommandName": "Get-PnPTeamsTag" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { + "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, - "Command": "Get-PnPTeamsTeam", "Id": 764, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { + "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Id": 765, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "Rank": 3, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "CommandName": "Get-PnPTeamsTab", + "Rank": 1, "Id": 766, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "Rank": 4, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "CommandName": "Get-PnPTeamsTab", + "Rank": 2, "Id": 767, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "Rank": 5, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPTeamsTab", + "Rank": 3, "Id": 768, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "Rank": 1, - "Command": "Get-PnPTeamsUser -Team MyTeam", + "CommandName": "Get-PnPTeamsTab", + "Rank": 4, "Id": 769, - "CommandName": "Get-PnPTeamsUser" + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "Rank": 2, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "CommandName": "Get-PnPTeamsTab", + "Rank": 5, "Id": 770, - "CommandName": "Get-PnPTeamsUser" + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "Rank": 3, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "CommandName": "Get-PnPTeamsTag", + "Rank": 1, "Id": 771, - "CommandName": "Get-PnPTeamsUser" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Rank": 4, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "CommandName": "Get-PnPTeamsTag", + "Rank": 2, "Id": 772, - "CommandName": "Get-PnPTeamsUser" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { + "CommandName": "Get-PnPTeamsTeam", "Rank": 1, - "Command": "Get-PnPTemporarilyDisableAppBar", "Id": 773, - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "Command": "Get-PnPTeamsTeam" }, { - "Rank": 1, - "Command": "Get-PnPTenant", + "CommandName": "Get-PnPTeamsTeam", + "Rank": 2, "Id": 774, - "CommandName": "Get-PnPTenant" + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "Rank": 1, - "Command": "Get-PnPTenantAppCatalogUrl", + "CommandName": "Get-PnPTeamsTeam", + "Rank": 3, "Id": 775, - "CommandName": "Get-PnPTenantAppCatalogUrl" + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "CommandName": "Get-PnPTeamsTeam", + "Rank": 4, "Id": 776, - "CommandName": "Get-PnPTenantCdnEnabled" + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "CommandName": "Get-PnPTeamsTeam", + "Rank": 5, "Id": 777, - "CommandName": "Get-PnPTenantCdnOrigin" + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { + "CommandName": "Get-PnPTeamsUser", "Rank": 1, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Id": 778, - "CommandName": "Get-PnPTenantCdnPolicies" + "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "Rank": 1, - "Command": "Get-PnPTenantDeletedSite", + "CommandName": "Get-PnPTeamsUser", + "Rank": 2, "Id": 779, - "CommandName": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "Rank": 2, - "Command": "Get-PnPTenantDeletedSite -Detailed", + "CommandName": "Get-PnPTeamsUser", + "Rank": 3, "Id": 780, - "CommandName": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "Rank": 3, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Get-PnPTeamsUser", + "Rank": 4, "Id": 781, - "CommandName": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "Rank": 4, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1, "Id": 782, - "CommandName": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "Rank": 5, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "CommandName": "Get-PnPTenant", + "Rank": 1, "Id": 783, - "CommandName": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTenant" }, { + "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "Command": "Get-PnPTenantId", "Id": 784, - "CommandName": "Get-PnPTenantId" + "Command": "Get-PnPTenantAppCatalogUrl" }, { - "Rank": 2, - "Command": "Get-PnPTenantId contoso", + "CommandName": "Get-PnPTenantCdnEnabled", + "Rank": 1, "Id": 785, - "CommandName": "Get-PnPTenantId" + "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "Rank": 3, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "CommandName": "Get-PnPTenantCdnOrigin", + "Rank": 1, "Id": 786, - "CommandName": "Get-PnPTenantId" + "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "Rank": 4, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "CommandName": "Get-PnPTenantCdnPolicies", + "Rank": 1, "Id": 787, - "CommandName": "Get-PnPTenantId" + "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Id": 788, - "CommandName": "Get-PnPTenantInfo" + "Command": "Get-PnPTenantDeletedSite" }, { + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Id": 789, - "CommandName": "Get-PnPTenantInfo" + "Command": "Get-PnPTenantDeletedSite -Detailed" }, { + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, - "Command": "Get-PnPTenantInfo", "Id": 790, - "CommandName": "Get-PnPTenantInfo" + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, - "Command": "Get-PnPTenantInfo -CurrentTenant", "Id": 791, - "CommandName": "Get-PnPTenantInfo" + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "Rank": 1, - "Command": "Get-PnPTenantInstance", + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 5, "Id": 792, - "CommandName": "Get-PnPTenantInstance" + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { + "CommandName": "Get-PnPTenantId", "Rank": 1, - "Command": "Get-PnPTenantRecycleBinItem", "Id": 793, - "CommandName": "Get-PnPTenantRecycleBinItem" + "Command": "Get-PnPTenantId" }, { - "Rank": 1, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "CommandName": "Get-PnPTenantId", + "Rank": 2, "Id": 794, - "CommandName": "Get-PnPTenantSequence" + "Command": "Get-PnPTenantId contoso" }, { - "Rank": 2, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "CommandName": "Get-PnPTenantId", + "Rank": 3, "Id": 795, - "CommandName": "Get-PnPTenantSequence" + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "Rank": 1, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "CommandName": "Get-PnPTenantId", + "Rank": 4, "Id": 796, - "CommandName": "Get-PnPTenantSequenceSite" + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "Rank": 2, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "CommandName": "Get-PnPTenantInfo", + "Rank": 1, "Id": 797, - "CommandName": "Get-PnPTenantSequenceSite" + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "Rank": 1, - "Command": "Get-PnPTenantSite", + "CommandName": "Get-PnPTenantInfo", + "Rank": 2, "Id": 798, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "Rank": 2, - "Command": "Get-PnPTenantSite -Detailed", + "CommandName": "Get-PnPTenantInfo", + "Rank": 3, "Id": 799, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantInfo" }, { - "Rank": 3, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "CommandName": "Get-PnPTenantInfo", + "Rank": 4, "Id": 800, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "Rank": 4, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "CommandName": "Get-PnPTenantInstance", + "Rank": 1, "Id": 801, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantInstance" }, { - "Rank": 5, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "CommandName": "Get-PnPTenantRecycleBinItem", + "Rank": 1, "Id": 802, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantRecycleBinItem" }, { - "Rank": 6, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "CommandName": "Get-PnPTenantSequence", + "Rank": 1, "Id": 803, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "Rank": 7, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "CommandName": "Get-PnPTenantSequence", + "Rank": 2, "Id": 804, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "Rank": 8, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 1, "Id": 805, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "Rank": 9, - "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 2, "Id": 806, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { + "CommandName": "Get-PnPTenantSite", "Rank": 1, - "Command": "Get-PnPTenantSyncClientRestriction", "Id": 807, - "CommandName": "Get-PnPTenantSyncClientRestriction" + "Command": "Get-PnPTenantSite" }, { - "Rank": 1, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "CommandName": "Get-PnPTenantSite", + "Rank": 2, "Id": 808, - "CommandName": "Get-PnPTenantTemplate" + "Command": "Get-PnPTenantSite -Detailed" }, { - "Rank": 2, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "CommandName": "Get-PnPTenantSite", + "Rank": 3, "Id": 809, - "CommandName": "Get-PnPTenantTemplate" + "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "Rank": 3, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "CommandName": "Get-PnPTenantSite", + "Rank": 4, "Id": 810, - "CommandName": "Get-PnPTenantTemplate" + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "Rank": 1, - "Command": "Get-PnPTenantTheme", + "CommandName": "Get-PnPTenantSite", + "Rank": 5, "Id": 811, - "CommandName": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "Rank": 2, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Get-PnPTenantSite", + "Rank": 6, "Id": 812, - "CommandName": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "Rank": 3, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "CommandName": "Get-PnPTenantSite", + "Rank": 7, "Id": 813, - "CommandName": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "Rank": 1, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTenantSite", + "Rank": 8, "Id": 814, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "Rank": 2, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTenantSite", + "Rank": 9, "Id": 815, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "Rank": 3, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, "Id": 816, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTenantSyncClientRestriction" }, { - "Rank": 4, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "CommandName": "Get-PnPTenantTemplate", + "Rank": 1, "Id": 817, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "Rank": 5, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "CommandName": "Get-PnPTenantTemplate", + "Rank": 2, "Id": 818, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "Rank": 1, - "Command": "Get-PnPTermGroup", + "CommandName": "Get-PnPTenantTemplate", + "Rank": 3, "Id": 819, - "CommandName": "Get-PnPTermGroup" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "Rank": 2, - "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "CommandName": "Get-PnPTenantTheme", + "Rank": 1, "Id": 820, - "CommandName": "Get-PnPTermGroup" + "Command": "Get-PnPTenantTheme" }, { - "Rank": 3, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "CommandName": "Get-PnPTenantTheme", + "Rank": 2, "Id": 821, - "CommandName": "Get-PnPTermGroup" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Rank": 1, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "CommandName": "Get-PnPTenantTheme", + "Rank": 3, "Id": 822, - "CommandName": "Get-PnPTermLabel" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "Rank": 2, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "CommandName": "Get-PnPTerm", + "Rank": 1, "Id": 823, - "CommandName": "Get-PnPTermLabel" + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 3, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", + "Rank": 2, "Id": 824, - "CommandName": "Get-PnPTermLabel" + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 1, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", + "Rank": 3, "Id": 825, - "CommandName": "Get-PnPTermSet" + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 2, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", + "Rank": 4, "Id": 826, - "CommandName": "Get-PnPTermSet" + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "Rank": 3, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "CommandName": "Get-PnPTerm", + "Rank": 5, "Id": 827, - "CommandName": "Get-PnPTermSet" + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { + "CommandName": "Get-PnPTermGroup", "Rank": 1, - "Command": "Get-PnPTheme", "Id": 828, - "CommandName": "Get-PnPTheme" + "Command": "Get-PnPTermGroup" }, { + "CommandName": "Get-PnPTermGroup", "Rank": 2, - "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Id": 829, - "CommandName": "Get-PnPTheme" + "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "Rank": 1, - "Command": "Get-PnPTimeZoneId", + "CommandName": "Get-PnPTermGroup", + "Rank": 3, "Id": 830, - "CommandName": "Get-PnPTimeZoneId" + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "Rank": 2, - "Command": "Get-PnPTimeZoneId -Match Stockholm", + "CommandName": "Get-PnPTermLabel", + "Rank": 1, "Id": 831, - "CommandName": "Get-PnPTimeZoneId" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "Rank": 1, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "CommandName": "Get-PnPTermLabel", + "Rank": 2, "Id": 832, - "CommandName": "Get-PnPUnfurlLink" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "Rank": 1, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "CommandName": "Get-PnPTermLabel", + "Rank": 3, "Id": 833, - "CommandName": "Get-PnPUnifiedAuditLog" + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { + "CommandName": "Get-PnPTermSet", "Rank": 1, - "Command": "Get-PnPUPABulkImportStatus", "Id": 834, - "CommandName": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { + "CommandName": "Get-PnPTermSet", "Rank": 2, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Id": 835, - "CommandName": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { + "CommandName": "Get-PnPTermSet", "Rank": 3, - "Command": "Get-PnPUPABulkImportStatus -JobId <guid>", "Id": 836, - "CommandName": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "Rank": 4, - "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails", + "CommandName": "Get-PnPTheme", + "Rank": 1, "Id": 837, - "CommandName": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPTheme" }, { - "Rank": 1, - "Command": "Get-PnPUser", + "CommandName": "Get-PnPTheme", + "Rank": 2, "Id": 838, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "Rank": 2, - "Command": "Get-PnPUser -Identity 23", + "CommandName": "Get-PnPTimeZoneId", + "Rank": 1, "Id": 839, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPTimeZoneId" }, { - "Rank": 3, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPTimeZoneId", + "Rank": 2, "Id": 840, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "Rank": 4, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUnfurlLink", + "Rank": 1, "Id": 841, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "Rank": 5, - "Command": "Get-PnPUser -WithRightsAssigned", + "CommandName": "Get-PnPUnifiedAuditLog", + "Rank": 1, "Id": 842, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "Rank": 6, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 1, "Id": 843, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUPABulkImportStatus" }, { - "Rank": 7, - "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 2, "Id": 844, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "Rank": 1, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 3, "Id": 845, - "CommandName": "Get-PnPUserOneDriveQuota" + "Command": "Get-PnPUPABulkImportStatus -JobId <guid>" }, { - "Rank": 1, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 4, "Id": 846, - "CommandName": "Get-PnPUserProfileProperty" + "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails" }, { - "Rank": 2, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "CommandName": "Get-PnPUser", + "Rank": 1, "Id": 847, - "CommandName": "Get-PnPUserProfileProperty" + "Command": "Get-PnPUser" }, { - "Rank": 3, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "CommandName": "Get-PnPUser", + "Rank": 2, "Id": 848, - "CommandName": "Get-PnPUserProfileProperty" + "Command": "Get-PnPUser -Identity 23" }, { - "Rank": 1, - "Command": "Get-PnPView -List \"Demo List\"", + "CommandName": "Get-PnPUser", + "Rank": 3, "Id": 849, - "CommandName": "Get-PnPView" + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "Rank": 2, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "CommandName": "Get-PnPUser", + "Rank": 4, "Id": 850, - "CommandName": "Get-PnPView" + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "Rank": 3, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "CommandName": "Get-PnPUser", + "Rank": 5, "Id": 851, - "CommandName": "Get-PnPView" + "Command": "Get-PnPUser -WithRightsAssigned" }, { - "Rank": 1, - "Command": "Get-PnPVivaConnectionsDashboardACE", + "CommandName": "Get-PnPUser", + "Rank": 6, "Id": 852, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "Rank": 2, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Get-PnPUser", + "Rank": 7, "Id": 853, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { + "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, - "Command": "Get-PnPWeb", "Id": 854, - "CommandName": "Get-PnPWeb" + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { + "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, - "Command": "Get-PnPWebHeader", "Id": 855, - "CommandName": "Get-PnPWebHeader" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "Rank": 1, - "Command": "Get-PnPWebhookSubscription -List MyList", + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 2, "Id": 856, - "CommandName": "Get-PnPWebhookSubscription" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "Rank": 1, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 3, "Id": 857, - "CommandName": "Get-PnPWebPart" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "Rank": 2, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPView", + "Rank": 1, "Id": 858, - "CommandName": "Get-PnPWebPart" + "Command": "Get-PnPView -List \"Demo List\"" }, { - "Rank": 1, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "CommandName": "Get-PnPView", + "Rank": 2, "Id": 859, - "CommandName": "Get-PnPWebPartProperty" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "Rank": 2, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "CommandName": "Get-PnPView", + "Rank": 3, "Id": 860, - "CommandName": "Get-PnPWebPartProperty" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 861, - "CommandName": "Get-PnPWebPartXml" + "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, - "Command": "Get-PnPWebTemplates", + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 2, "Id": 862, - "CommandName": "Get-PnPWebTemplates" + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Rank": 2, - "Command": "Get-PnPWebTemplates -LCID 1033", + "CommandName": "Get-PnPWeb", + "Rank": 1, "Id": 863, - "CommandName": "Get-PnPWebTemplates" + "Command": "Get-PnPWeb" }, { - "Rank": 3, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "CommandName": "Get-PnPWebHeader", + "Rank": 1, "Id": 864, - "CommandName": "Get-PnPWebTemplates" + "Command": "Get-PnPWebHeader" }, { + "CommandName": "Get-PnPWebhookSubscription", "Rank": 1, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Id": 865, - "CommandName": "Get-PnPWikiPageContent" + "Command": "Get-PnPWebhookSubscription -List MyList" }, { + "CommandName": "Get-PnPWebPart", "Rank": 1, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Id": 866, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { + "CommandName": "Get-PnPWebPart", "Rank": 2, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", "Id": 867, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { + "CommandName": "Get-PnPWebPartProperty", "Rank": 1, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 868, - "CommandName": "Grant-PnPHubSiteRights" + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "Rank": 1, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Get-PnPWebPartProperty", + "Rank": 2, "Id": 869, - "CommandName": "Grant-PnPSiteDesignRights" + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { + "CommandName": "Get-PnPWebPartXml", "Rank": 1, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 870, - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { + "CommandName": "Get-PnPWebTemplates", "Rank": 1, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Id": 871, - "CommandName": "Import-PnPTaxonomy" + "Command": "Get-PnPWebTemplates" }, { + "CommandName": "Get-PnPWebTemplates", "Rank": 2, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Id": 872, - "CommandName": "Import-PnPTaxonomy" + "Command": "Get-PnPWebTemplates -LCID 1033" }, { + "CommandName": "Get-PnPWebTemplates", "Rank": 3, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Id": 873, - "CommandName": "Import-PnPTaxonomy" + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { + "CommandName": "Get-PnPWikiPageContent", "Rank": 1, - "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Id": 874, - "CommandName": "Import-PnPTermGroupFromXml" + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "Rank": 2, - "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 1, "Id": 875, - "CommandName": "Import-PnPTermGroupFromXml" + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "Rank": 1, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 2, "Id": 876, - "CommandName": "Import-PnPTermSet" + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects" }, { - "Rank": 2, - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", + "CommandName": "Grant-PnPHubSiteRights", + "Rank": 1, "Id": 877, - "CommandName": "Import-PnPTermSet" + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Rank": 3, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", + "CommandName": "Grant-PnPSiteDesignRights", + "Rank": 1, "Id": 878, - "CommandName": "Import-PnPTermSet" + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { + "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 879, - "CommandName": "Install-PnPApp" + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Rank": 2, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Import-PnPTaxonomy", + "Rank": 1, "Id": 880, - "CommandName": "Install-PnPApp" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "Rank": 1, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "CommandName": "Import-PnPTaxonomy", + "Rank": 2, "Id": 881, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "Rank": 2, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "CommandName": "Import-PnPTaxonomy", + "Rank": 3, "Id": 882, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "Rank": 3, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 1, "Id": 883, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "Rank": 4, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 2, "Id": 884, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "Rank": 5, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "CommandName": "Import-PnPTermSet", + "Rank": 1, "Id": 885, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "Rank": 6, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", + "CommandName": "Import-PnPTermSet", + "Rank": 2, "Id": 886, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "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\"", + "CommandName": "Import-PnPTermSet", + "Rank": 3, "Id": 887, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { + "CommandName": "Install-PnPApp", "Rank": 1, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 888, - "CommandName": "Invoke-PnPListDesign" + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { + "CommandName": "Install-PnPApp", "Rank": 2, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 889, - "CommandName": "Invoke-PnPListDesign" + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { + "CommandName": "Invoke-PnPGraphMethod", "Rank": 1, - "Command": "Invoke-PnPQuery -RetryCount 5", "Id": 890, - "CommandName": "Invoke-PnPQuery" + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "Rank": 1, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 2, "Id": 891, - "CommandName": "Invoke-PnPSiteDesign" + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "Rank": 2, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 3, "Id": 892, - "CommandName": "Invoke-PnPSiteDesign" + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "Rank": 1, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 4, "Id": 893, - "CommandName": "Invoke-PnPSiteScript" + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "Rank": 1, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 5, "Id": 894, - "CommandName": "Invoke-PnPSiteSwap" + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "Rank": 2, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 6, "Id": 895, - "CommandName": "Invoke-PnPSiteSwap" + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "Rank": 3, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 7, "Id": 896, - "CommandName": "Invoke-PnPSiteSwap" + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"" }, { + "CommandName": "Invoke-PnPListDesign", "Rank": 1, - "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Id": 897, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { + "CommandName": "Invoke-PnPListDesign", "Rank": 2, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Id": 898, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Rank": 3, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPQuery", + "Rank": 1, "Id": 899, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "Rank": 4, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "CommandName": "Invoke-PnPSiteDesign", + "Rank": 1, "Id": 900, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 5, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "CommandName": "Invoke-PnPSiteDesign", + "Rank": 2, "Id": 901, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Rank": 6, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "CommandName": "Invoke-PnPSiteScript", + "Rank": 1, "Id": 902, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "Rank": 7, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "CommandName": "Invoke-PnPSiteSwap", + "Rank": 1, "Id": 903, - "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" }, { - "Rank": 8, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "CommandName": "Invoke-PnPSiteSwap", + "Rank": 2, "Id": 904, - "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" }, { - "Rank": 1, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "CommandName": "Invoke-PnPSiteSwap", + "Rank": 3, "Id": 905, - "CommandName": "Invoke-PnPSPRestMethod" + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Id": 906, - "CommandName": "Invoke-PnPTenantTemplate" + "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Id": 907, - "CommandName": "Invoke-PnPTenantTemplate" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 908, - "CommandName": "Invoke-PnPTenantTemplate" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Rank": 1, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 4, "Id": 909, - "CommandName": "Invoke-PnPWebAction" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "Rank": 2, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 5, "Id": 910, - "CommandName": "Invoke-PnPWebAction" + "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "Rank": 1, - "Command": "Measure-PnPList \"Documents\"", + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 6, "Id": 911, - "CommandName": "Measure-PnPList" + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "Rank": 2, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 7, "Id": 912, - "CommandName": "Measure-PnPList" + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "Rank": 1, - "Command": "Measure-PnPWeb", + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 8, "Id": 913, - "CommandName": "Measure-PnPWeb" + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "Rank": 2, - "Command": "Measure-PnPWeb $web -Recursive", + "CommandName": "Invoke-PnPSPRestMethod", + "Rank": 1, "Id": 914, - "CommandName": "Measure-PnPWeb" + "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { + "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, - "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", "Id": 915, - "CommandName": "Merge-PnPTerm" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "Rank": 1, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 2, "Id": 916, - "CommandName": "Move-PnPFile" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "Rank": 2, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 3, "Id": 917, - "CommandName": "Move-PnPFile" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Rank": 3, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Invoke-PnPWebAction", + "Rank": 1, "Id": 918, - "CommandName": "Move-PnPFile" + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "Rank": 4, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Invoke-PnPWebAction", + "Rank": 2, "Id": 919, - "CommandName": "Move-PnPFile" + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { + "CommandName": "Measure-PnPList", "Rank": 1, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Id": 920, - "CommandName": "Move-PnPFolder" + "Command": "Measure-PnPList \"Documents\"" }, { + "CommandName": "Measure-PnPList", "Rank": 2, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Id": 921, - "CommandName": "Move-PnPFolder" + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { + "CommandName": "Measure-PnPWeb", "Rank": 1, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Id": 922, - "CommandName": "Move-PnPListItemToRecycleBin" + "Command": "Measure-PnPWeb" }, { - "Rank": 1, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "CommandName": "Measure-PnPWeb", + "Rank": 2, "Id": 923, - "CommandName": "Move-PnPPageComponent" + "Command": "Measure-PnPWeb $web -Recursive" }, { - "Rank": 2, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "CommandName": "Merge-PnPTerm", + "Rank": 1, "Id": 924, - "CommandName": "Move-PnPPageComponent" + "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b" }, { - "Rank": 3, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "CommandName": "Move-PnPFile", + "Rank": 1, "Id": 925, - "CommandName": "Move-PnPPageComponent" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "Rank": 4, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "CommandName": "Move-PnPFile", + "Rank": 2, "Id": 926, - "CommandName": "Move-PnPPageComponent" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "Rank": 1, - "Command": "Move-PnPRecycleBinItem", + "CommandName": "Move-PnPFile", + "Rank": 3, "Id": 927, - "CommandName": "Move-PnpRecycleBinItem" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Rank": 2, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "CommandName": "Move-PnPFile", + "Rank": 4, "Id": 928, - "CommandName": "Move-PnpRecycleBinItem" + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Rank": 3, - "Command": "Move-PnPRecycleBinItem -Force", + "CommandName": "Move-PnPFolder", + "Rank": 1, "Id": 929, - "CommandName": "Move-PnpRecycleBinItem" + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "Rank": 1, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", + "CommandName": "Move-PnPFolder", + "Rank": 2, "Id": 930, - "CommandName": "Move-PnPTerm" + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "Rank": 2, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "CommandName": "Move-PnPListItemToRecycleBin", + "Rank": 1, "Id": 931, - "CommandName": "Move-PnPTerm" + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "Rank": 3, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "CommandName": "Move-PnPPageComponent", + "Rank": 1, "Id": 932, - "CommandName": "Move-PnPTerm" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "Rank": 1, - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", + "CommandName": "Move-PnPPageComponent", + "Rank": 2, "Id": 933, - "CommandName": "Move-PnPTermSet" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "Rank": 2, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "CommandName": "Move-PnPPageComponent", + "Rank": 3, "Id": 934, - "CommandName": "Move-PnPTermSet" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "Rank": 1, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "Move-PnPPageComponent", + "Rank": 4, "Id": 935, - "CommandName": "New-PnPAzureADGroup" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "Rank": 2, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 1, "Id": 936, - "CommandName": "New-PnPAzureADGroup" + "Command": "Move-PnPRecycleBinItem" }, { - "Rank": 3, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 2, "Id": 937, - "CommandName": "New-PnPAzureADGroup" + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "Rank": 1, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 3, "Id": 938, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Command": "Move-PnPRecycleBinItem -Force" }, { - "Rank": 2, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "CommandName": "Move-PnPTerm", + "Rank": 1, "Id": 939, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "Rank": 3, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "CommandName": "Move-PnPTerm", + "Rank": 2, "Id": 940, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "Rank": 1, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "CommandName": "Move-PnPTerm", + "Rank": 3, "Id": 941, - "CommandName": "New-PnPAzureCertificate" + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "Rank": 2, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "CommandName": "Move-PnPTermSet", + "Rank": 1, "Id": 942, - "CommandName": "New-PnPAzureCertificate" + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "Rank": 3, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "CommandName": "Move-PnPTermSet", + "Rank": 2, "Id": 943, - "CommandName": "New-PnPAzureCertificate" + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "Rank": 4, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", + "CommandName": "New-PnPAzureADGroup", + "Rank": 1, "Id": 944, - "CommandName": "New-PnPAzureCertificate" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "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()", + "CommandName": "New-PnPAzureADGroup", + "Rank": 2, "Id": 945, - "CommandName": "New-PnPGraphSubscription" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "Rank": 2, - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", + "CommandName": "New-PnPAzureADGroup", + "Rank": 3, "Id": 946, - "CommandName": "New-PnPGraphSubscription" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, - "Command": "New-PnPGroup -Title \"My Site Users\"", "Id": 947, - "CommandName": "New-PnPGroup" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "Rank": 1, - "Command": "New-PnPList -Title Announcements -Template Announcements", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 2, "Id": 948, - "CommandName": "New-PnPList" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "Rank": 2, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 3, "Id": 949, - "CommandName": "New-PnPList" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "Rank": 3, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "CommandName": "New-PnPAzureCertificate", + "Rank": 1, "Id": 950, - "CommandName": "New-PnPList" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "Rank": 1, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPAzureCertificate", + "Rank": 2, "Id": 951, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "Rank": 2, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "CommandName": "New-PnPAzureCertificate", + "Rank": 3, "Id": 952, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "Rank": 3, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "CommandName": "New-PnPAzureCertificate", + "Rank": 4, "Id": 953, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null" }, { - "Rank": 4, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "CommandName": "New-PnPContainerType", + "Rank": 1, "Id": 954, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"" }, { - "Rank": 5, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPGraphSubscription", + "Rank": 1, "Id": 955, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Rank": 6, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "New-PnPGraphSubscription", + "Rank": 2, "Id": 956, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Rank": 7, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "CommandName": "New-PnPGroup", + "Rank": 1, "Id": 957, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPGroup -Title \"My Site Users\"" }, { + "CommandName": "New-PnPList", "Rank": 1, - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "Id": 958, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "Command": "New-PnPList -Title Announcements -Template Announcements" }, { + "CommandName": "New-PnPList", "Rank": 2, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Id": 959, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "Rank": 1, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "CommandName": "New-PnPList", + "Rank": 3, "Id": 960, - "CommandName": "New-PnPPersonalSite" + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { + "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Id": 961, - "CommandName": "New-PnPPlannerPlan" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Rank": 1, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 2, "Id": 962, - "CommandName": "New-PnPSdnProvider" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "Rank": 1, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 3, "Id": 963, - "CommandName": "New-PnPSite" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "Rank": 2, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 4, "Id": 964, - "CommandName": "New-PnPSite" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "Rank": 3, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 5, "Id": 965, - "CommandName": "New-PnPSite" + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Rank": 4, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 6, "Id": 966, - "CommandName": "New-PnPSite" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Rank": 5, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 7, "Id": 967, - "CommandName": "New-PnPSite" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "Rank": 6, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Rank": 1, "Id": 968, - "CommandName": "New-PnPSite" + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "Rank": 7, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Rank": 2, "Id": 969, - "CommandName": "New-PnPSite" + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "Rank": 8, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "CommandName": "New-PnPPersonalSite", + "Rank": 1, "Id": 970, - "CommandName": "New-PnPSite" + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "Rank": 9, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "CommandName": "New-PnPPlannerPlan", + "Rank": 1, "Id": 971, - "CommandName": "New-PnPSite" + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "Rank": 10, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "CommandName": "New-PnPSdnProvider", + "Rank": 1, "Id": 972, - "CommandName": "New-PnPSite" + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "Rank": 11, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "CommandName": "New-PnPSite", + "Rank": 1, "Id": 973, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Rank": 12, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "CommandName": "New-PnPSite", + "Rank": 2, "Id": 974, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "Rank": 13, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "CommandName": "New-PnPSite", + "Rank": 3, "Id": 975, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Rank": 14, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "CommandName": "New-PnPSite", + "Rank": 4, "Id": 976, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Rank": 15, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite", + "Rank": 5, "Id": 977, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Rank": 16, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "CommandName": "New-PnPSite", + "Rank": 6, "Id": 978, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Rank": 1, - "Command": "New-PnPSiteCollectionTermStore", + "CommandName": "New-PnPSite", + "Rank": 7, "Id": 979, - "CommandName": "New-PnPSiteCollectionTermStore" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "Rank": 1, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "CommandName": "New-PnPSite", + "Rank": 8, "Id": 980, - "CommandName": "New-PnPSiteGroup" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "Rank": 2, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "CommandName": "New-PnPSite", + "Rank": 9, "Id": 981, - "CommandName": "New-PnPSiteGroup" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "Rank": 1, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "CommandName": "New-PnPSite", + "Rank": 10, "Id": 982, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "Rank": 2, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "CommandName": "New-PnPSite", + "Rank": 11, "Id": 983, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Rank": 3, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "CommandName": "New-PnPSite", + "Rank": 12, "Id": 984, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Rank": 4, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "CommandName": "New-PnPSite", + "Rank": 13, "Id": 985, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Rank": 5, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "CommandName": "New-PnPSite", + "Rank": 14, "Id": 986, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Rank": 6, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "New-PnPSite", + "Rank": 15, "Id": 987, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Rank": 7, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "CommandName": "New-PnPSite", + "Rank": 16, "Id": 988, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "Rank": 8, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "CommandName": "New-PnPSiteCollectionTermStore", + "Rank": 1, "Id": 989, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSiteCollectionTermStore" }, { + "CommandName": "New-PnPSiteGroup", "Rank": 1, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Id": 990, - "CommandName": "New-PnPTeamsApp" + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "Rank": 1, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "CommandName": "New-PnPSiteGroup", + "Rank": 2, "Id": 991, - "CommandName": "New-PnPTeamsTeam" + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "Rank": 2, - "Command": "New-PnPTeamsTeam -GroupId $groupId", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 1, "Id": 992, - "CommandName": "New-PnPTeamsTeam" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "Rank": 3, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 2, "Id": 993, - "CommandName": "New-PnPTeamsTeam" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "Rank": 4, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 3, "Id": 994, - "CommandName": "New-PnPTeamsTeam" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "Rank": 5, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 4, "Id": 995, - "CommandName": "New-PnPTeamsTeam" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "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\"", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 5, "Id": 996, - "CommandName": "New-PnPTeamsTeam" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "Rank": 1, - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 6, "Id": 997, - "CommandName": "New-PnPTenantSite" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 2, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 7, "Id": 998, - "CommandName": "New-PnPTenantSite" + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "Rank": 1, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 8, "Id": 999, - "CommandName": "New-PnPTerm" + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "Rank": 2, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "New-PnPTeamsApp", + "Rank": 1, "Id": 1000, - "CommandName": "New-PnPTerm" + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { + "CommandName": "New-PnPTeamsTeam", "Rank": 1, - "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Id": 1001, - "CommandName": "New-PnPTermGroup" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "Rank": 1, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "CommandName": "New-PnPTeamsTeam", + "Rank": 2, "Id": 1002, - "CommandName": "New-PnPTermLabel" + "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "Rank": 1, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "CommandName": "New-PnPTeamsTeam", + "Rank": 3, "Id": 1003, - "CommandName": "New-PnPTermSet" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "Rank": 1, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "CommandName": "New-PnPTeamsTeam", + "Rank": 4, "Id": 1004, - "CommandName": "New-PnPUPABulkImportJob" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Rank": 2, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", + "CommandName": "New-PnPTeamsTeam", + "Rank": 5, "Id": 1005, - "CommandName": "New-PnPUPABulkImportJob" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "Rank": 1, - "Command": "New-PnPUser -LoginName user@company.com", + "CommandName": "New-PnPTeamsTeam", + "Rank": 6, "Id": 1006, - "CommandName": "New-PnPUser" + "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\"" }, { + "CommandName": "New-PnPTenantSite", "Rank": 1, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Id": 1007, - "CommandName": "New-PnPWeb" + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Rank": 1, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "New-PnPTenantSite", + "Rank": 2, "Id": 1008, - "CommandName": "Publish-PnPApp" + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Rank": 2, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "CommandName": "New-PnPTerm", + "Rank": 1, "Id": 1009, - "CommandName": "Publish-PnPApp" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "Rank": 1, - "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", + "CommandName": "New-PnPTerm", + "Rank": 2, "Id": 1010, - "CommandName": "Publish-PnPCompanyApp" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { + "CommandName": "New-PnPTermGroup", "Rank": 1, - "Command": "Publish-PnPContentType -ContentType 0x0101", "Id": 1011, - "CommandName": "Publish-PnPContentType" + "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { + "CommandName": "New-PnPTermLabel", "Rank": 1, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 1012, - "CommandName": "Publish-PnPSyntexModel" + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "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", + "CommandName": "New-PnPTermSet", + "Rank": 1, "Id": 1013, - "CommandName": "Publish-PnPSyntexModel" + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { + "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, - "Command": "Read-PnPSiteTemplate -Path template.pnp", "Id": 1014, - "CommandName": "Read-PnPSiteTemplate" + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { + "CommandName": "New-PnPUPABulkImportJob", "Rank": 2, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Id": 1015, - "CommandName": "Read-PnPSiteTemplate" + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "Rank": 3, - "Command": "Read-PnPSiteTemplate -Xml $xml", + "CommandName": "New-PnPUser", + "Rank": 1, "Id": 1016, - "CommandName": "Read-PnPSiteTemplate" + "Command": "New-PnPUser -LoginName user@company.com" }, { + "CommandName": "New-PnPWeb", "Rank": 1, - "Command": "Read-PnPTenantTemplate -Path template.pnp", "Id": 1017, - "CommandName": "Read-PnPTenantTemplate" + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { + "CommandName": "Publish-PnPApp", "Rank": 1, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Id": 1018, - "CommandName": "Register-PnPAppCatalogSite" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Rank": 1, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "CommandName": "Publish-PnPApp", + "Rank": 2, "Id": 1019, - "CommandName": "Register-PnPAzureADApp" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "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\")", + "CommandName": "Publish-PnPCompanyApp", + "Rank": 1, "Id": 1020, - "CommandName": "Register-PnPAzureADApp" + "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" }, { - "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\")", + "CommandName": "Publish-PnPContentType", + "Rank": 1, "Id": 1021, - "CommandName": "Register-PnPAzureADApp" + "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "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\")", + "CommandName": "Publish-PnPSyntexModel", + "Rank": 1, "Id": 1022, - "CommandName": "Register-PnPAzureADApp" + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Rank": 5, - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "CommandName": "Publish-PnPSyntexModel", + "Rank": 2, "Id": 1023, - "CommandName": "Register-PnPAzureADApp" + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Rank": 6, - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "CommandName": "Read-PnPSiteTemplate", + "Rank": 1, "Id": 1024, - "CommandName": "Register-PnPAzureADApp" + "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "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", + "CommandName": "Read-PnPSiteTemplate", + "Rank": 2, "Id": 1025, - "CommandName": "Register-PnPAzureADApp" + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "Rank": 1, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Read-PnPSiteTemplate", + "Rank": 3, "Id": 1026, - "CommandName": "Register-PnPHubSite" + "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "Rank": 2, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "CommandName": "Read-PnPTenantTemplate", + "Rank": 1, "Id": 1027, - "CommandName": "Register-PnPHubSite" + "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { + "CommandName": "Register-PnPAppCatalogSite", "Rank": 1, - "Command": "Register-PnPManagementShellAccess", "Id": 1028, - "CommandName": "Register-PnPManagementShellAccess" + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "Rank": 2, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "CommandName": "Register-PnPAzureADApp", + "Rank": 1, "Id": 1029, - "CommandName": "Register-PnPManagementShellAccess" + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Rank": 3, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "CommandName": "Register-PnPAzureADApp", + "Rank": 2, "Id": 1030, - "CommandName": "Register-PnPManagementShellAccess" + "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\")" }, { - "Rank": 1, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "CommandName": "Register-PnPAzureADApp", + "Rank": 3, "Id": 1031, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "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\")" }, { - "Rank": 2, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "CommandName": "Register-PnPAzureADApp", + "Rank": 4, "Id": 1032, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "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\")" }, { - "Rank": 1, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "CommandName": "Register-PnPAzureADApp", + "Rank": 5, "Id": 1033, - "CommandName": "Remove-PnPAlert" + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Rank": 2, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Register-PnPAzureADApp", + "Rank": 6, "Id": 1034, - "CommandName": "Remove-PnPAlert" + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Rank": 1, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Register-PnPAzureADApp", + "Rank": 7, "Id": 1035, - "CommandName": "Remove-PnPApp" + "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" }, { - "Rank": 2, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Register-PnPHubSite", + "Rank": 1, "Id": 1036, - "CommandName": "Remove-PnPApp" + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 1, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Register-PnPHubSite", + "Rank": 2, "Id": 1037, - "CommandName": "Remove-PnPApplicationCustomizer" + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "Rank": 2, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 1, "Id": 1038, - "CommandName": "Remove-PnPApplicationCustomizer" + "Command": "Register-PnPManagementShellAccess" }, { - "Rank": 1, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 2, "Id": 1039, - "CommandName": "Remove-PnPAvailableSiteClassification" + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "Rank": 2, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 3, "Id": 1040, - "CommandName": "Remove-PnPAvailableSiteClassification" + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, - "Command": "Remove-PnPAzureADApp -Identity MyApp", "Id": 1041, - "CommandName": "Remove-PnPAzureADApp" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 1042, - "CommandName": "Remove-PnPAzureADApp" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { + "CommandName": "Remove-PnPAlert", "Rank": 1, - "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Id": 1043, - "CommandName": "Remove-PnPAzureADGroup" + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { + "CommandName": "Remove-PnPAlert", "Rank": 2, - "Command": "Remove-PnPAzureADGroup -Identity $group", "Id": 1044, - "CommandName": "Remove-PnPAzureADGroup" + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { + "CommandName": "Remove-PnPApp", "Rank": 1, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1045, - "CommandName": "Remove-PnPAzureADGroupMember" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 1, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPApp", + "Rank": 2, "Id": 1046, - "CommandName": "Remove-PnPAzureADGroupOwner" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { + "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Id": 1047, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { + "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Id": 1048, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Rank": 3, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 1, "Id": 1049, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "Rank": 4, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 2, "Id": 1050, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { + "CommandName": "Remove-PnPAzureADApp", "Rank": 1, - "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "Id": 1051, - "CommandName": "Remove-PnPContainer" + "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { + "CommandName": "Remove-PnPAzureADApp", "Rank": 2, - "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", "Id": 1052, - "CommandName": "Remove-PnPContainer" + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { + "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, - "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Id": 1053, - "CommandName": "Remove-PnPContentType" + "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { + "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Id": 1054, - "CommandName": "Remove-PnPContentType" + "Command": "Remove-PnPAzureADGroup -Identity $group" }, { + "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 1055, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 2, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Remove-PnPAzureADGroupOwner", + "Rank": 1, "Id": 1056, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Id": 1057, - "CommandName": "Remove-PnPContentTypeFromList" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "Rank": 1, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, "Id": 1058, - "CommandName": "Remove-PnPCustomAction" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "Rank": 2, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 3, "Id": 1059, - "CommandName": "Remove-PnPCustomAction" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Rank": 3, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 4, "Id": 1060, - "CommandName": "Remove-PnPCustomAction" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { + "CommandName": "Remove-PnPContainer", "Rank": 1, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1061, - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { - "Rank": 1, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPContainer", + "Rank": 2, "Id": 1062, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" }, { - "Rank": 2, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPContentType", + "Rank": 1, "Id": 1063, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "Rank": 3, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "CommandName": "Remove-PnPContentType", + "Rank": 2, "Id": 1064, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "Rank": 4, - "Command": "Remove-PnPEventReceiver -List ProjectList", + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 1, "Id": 1065, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Rank": 5, - "Command": "Remove-PnPEventReceiver", + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 2, "Id": 1066, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Rank": 6, - "Command": "Remove-PnPEventReceiver -Scope Site", + "CommandName": "Remove-PnPContentTypeFromList", + "Rank": 1, "Id": 1067, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "Rank": 7, - "Command": "Remove-PnPEventReceiver -Scope Web", + "CommandName": "Remove-PnPCustomAction", + "Rank": 1, "Id": 1068, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Rank": 8, - "Command": "Remove-PnPEventReceiver -Scope All", + "CommandName": "Remove-PnPCustomAction", + "Rank": 2, "Id": 1069, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Rank": 1, - "Command": "Remove-PnPField -Identity \"Speakers\"", + "CommandName": "Remove-PnPCustomAction", + "Rank": 3, "Id": 1070, - "CommandName": "Remove-PnPField" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "Rank": 2, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Rank": 1, "Id": 1071, - "CommandName": "Remove-PnPField" + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { + "CommandName": "Remove-PnPEventReceiver", "Rank": 1, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 1072, - "CommandName": "Remove-PnPFieldFromContentType" + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { + "CommandName": "Remove-PnPEventReceiver", "Rank": 2, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Id": 1073, - "CommandName": "Remove-PnPFieldFromContentType" + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 1, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPEventReceiver", + "Rank": 3, "Id": 1074, - "CommandName": "Remove-PnPFile" + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "Rank": 2, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPEventReceiver", + "Rank": 4, "Id": 1075, - "CommandName": "Remove-PnPFile" + "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "Rank": 3, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "CommandName": "Remove-PnPEventReceiver", + "Rank": 5, "Id": 1076, - "CommandName": "Remove-PnPFile" + "Command": "Remove-PnPEventReceiver" }, { - "Rank": 1, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "CommandName": "Remove-PnPEventReceiver", + "Rank": 6, "Id": 1077, - "CommandName": "Remove-PnPFileFromSiteTemplate" + "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "Rank": 1, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Remove-PnPEventReceiver", + "Rank": 7, "Id": 1078, - "CommandName": "Remove-PnPFileSharingLink" + "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "Rank": 2, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "CommandName": "Remove-PnPEventReceiver", + "Rank": 8, "Id": 1079, - "CommandName": "Remove-PnPFileSharingLink" + "Command": "Remove-PnPEventReceiver -Scope All" }, { + "CommandName": "Remove-PnPField", "Rank": 1, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1080, - "CommandName": "Remove-PnPFileVersion" + "Command": "Remove-PnPField -Identity \"Speakers\"" }, { + "CommandName": "Remove-PnPField", "Rank": 2, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1081, - "CommandName": "Remove-PnPFileVersion" + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Rank": 3, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 1, "Id": 1082, - "CommandName": "Remove-PnPFileVersion" + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Rank": 1, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 2, "Id": 1083, - "CommandName": "Remove-PnPFlowOwner" + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "Rank": 2, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "CommandName": "Remove-PnPFile", + "Rank": 1, "Id": 1084, - "CommandName": "Remove-PnPFlowOwner" + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "Rank": 3, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "CommandName": "Remove-PnPFile", + "Rank": 2, "Id": 1085, - "CommandName": "Remove-PnPFlowOwner" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "Rank": 4, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "CommandName": "Remove-PnPFile", + "Rank": 3, "Id": 1086, - "CommandName": "Remove-PnPFlowOwner" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { + "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 1087, - "CommandName": "Remove-PnPFolder" + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "Rank": 2, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 1, "Id": 1088, - "CommandName": "Remove-PnPFolder" + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Rank": 1, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 2, "Id": 1089, - "CommandName": "Remove-PnPFolderSharingLink" + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "Rank": 2, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "CommandName": "Remove-PnPFileVersion", + "Rank": 1, "Id": 1090, - "CommandName": "Remove-PnPFolderSharingLink" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Rank": 1, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "CommandName": "Remove-PnPFileVersion", + "Rank": 2, "Id": 1091, - "CommandName": "Remove-PnPGraphSubscription" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Rank": 1, - "Command": "Remove-PnPGroup -Identity \"My Users\"", + "CommandName": "Remove-PnPFileVersion", + "Rank": 3, "Id": 1092, - "CommandName": "Remove-PnPGroup" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { + "CommandName": "Remove-PnPFlowOwner", "Rank": 1, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 1093, - "CommandName": "Remove-PnPGroupMember" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "Rank": 1, - "Command": "Remove-PnPHomeSite", + "CommandName": "Remove-PnPFlowOwner", + "Rank": 2, "Id": 1094, - "CommandName": "Remove-PnPHomeSite" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "Rank": 1, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPFlowOwner", + "Rank": 3, "Id": 1095, - "CommandName": "Remove-PnPHubSiteAssociation" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "Rank": 1, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "CommandName": "Remove-PnPFlowOwner", + "Rank": 4, "Id": 1096, - "CommandName": "Remove-PnPHubToHubAssociation" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "Rank": 2, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "CommandName": "Remove-PnPFolder", + "Rank": 1, "Id": 1097, - "CommandName": "Remove-PnPHubToHubAssociation" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Rank": 1, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "CommandName": "Remove-PnPFolder", + "Rank": 2, "Id": 1098, - "CommandName": "Remove-PnPIndexedProperty" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { + "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Id": 1099, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { + "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Id": 1100, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "Rank": 3, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "CommandName": "Remove-PnPGraphSubscription", + "Rank": 1, "Id": 1101, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "Rank": 4, - "Command": "Remove-PnPJavaScriptLink -Scope Site", + "CommandName": "Remove-PnPGroup", + "Rank": 1, "Id": 1102, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "Rank": 5, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "CommandName": "Remove-PnPGroupMember", + "Rank": 1, "Id": 1103, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { + "CommandName": "Remove-PnPHomeSite", "Rank": 1, - "Command": "Remove-PnPKnowledgeHubSite", "Id": 1104, - "CommandName": "Remove-PnPKnowledgeHubSite" + "Command": "Remove-PnPHomeSite" }, { + "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, - "Command": "Remove-PnPList -Identity Announcements", "Id": 1105, - "CommandName": "Remove-PnPList" + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Rank": 2, - "Command": "Remove-PnPList -Identity Announcements -Force", + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 1, "Id": 1106, - "CommandName": "Remove-PnPList" + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "Rank": 3, - "Command": "Remove-PnPList -Identity Announcements -Recycle", + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 2, "Id": 1107, - "CommandName": "Remove-PnPList" + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "Rank": 4, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "CommandName": "Remove-PnPIndexedProperty", + "Rank": 1, "Id": 1108, - "CommandName": "Remove-PnPList" + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { + "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1109, - "CommandName": "Remove-PnPListDesign" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "Rank": 1, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 2, "Id": 1110, - "CommandName": "Remove-PnPListItem" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "Rank": 2, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 3, "Id": 1111, - "CommandName": "Remove-PnPListItem" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "Rank": 3, - "Command": "Remove-PnPListItem -List \"Demo List\"", + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 4, "Id": 1112, - "CommandName": "Remove-PnPListItem" + "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "Rank": 1, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 5, "Id": 1113, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "Rank": 2, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "CommandName": "Remove-PnPKnowledgeHubSite", + "Rank": 1, "Id": 1114, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPKnowledgeHubSite" }, { - "Rank": 3, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "CommandName": "Remove-PnPList", + "Rank": 1, "Id": 1115, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPList -Identity Announcements" }, { - "Rank": 4, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "CommandName": "Remove-PnPList", + "Rank": 2, "Id": 1116, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "Rank": 5, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "CommandName": "Remove-PnPList", + "Rank": 3, "Id": 1117, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "Rank": 1, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Remove-PnPList", + "Rank": 4, "Id": 1118, - "CommandName": "Remove-PnPListItemVersion" + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "Rank": 2, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Remove-PnPListDesign", + "Rank": 1, "Id": 1119, - "CommandName": "Remove-PnPListItemVersion" + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { + "CommandName": "Remove-PnPListItem", "Rank": 1, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Id": 1120, - "CommandName": "Remove-PnPMicrosoft365Group" + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { + "CommandName": "Remove-PnPListItem", "Rank": 2, - "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Id": 1121, - "CommandName": "Remove-PnPMicrosoft365Group" + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPListItem", + "Rank": 3, "Id": 1122, - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "Command": "Remove-PnPListItem -List \"Demo List\"" }, { + "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1123, - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 2, "Id": 1124, - "CommandName": "Remove-PnPMicrosoft365GroupPhoto" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 3, "Id": 1125, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "Rank": 2, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 4, "Id": 1126, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "Rank": 1, - "Command": "Remove-PnPNavigationNode -Identity 1032", + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 5, "Id": 1127, - "CommandName": "Remove-PnPNavigationNode" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "Rank": 2, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "CommandName": "Remove-PnPListItemVersion", + "Rank": 1, "Id": 1128, - "CommandName": "Remove-PnPNavigationNode" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Rank": 3, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "CommandName": "Remove-PnPListItemVersion", + "Rank": 2, "Id": 1129, - "CommandName": "Remove-PnPNavigationNode" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { + "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Id": 1130, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { + "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Id": 1131, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "Rank": 3, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Rank": 1, "Id": 1132, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1133, - "CommandName": "Remove-PnPOrgNewsSite" + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { + "CommandName": "Remove-PnPMicrosoft365GroupPhoto", "Rank": 1, - "Command": "Remove-PnPPage -Identity \"MyPage\"", "Id": 1134, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"" }, { - "Rank": 2, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 1, "Id": 1135, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "Rank": 3, - "Command": "Remove-PnPPage $page", + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 2, "Id": 1136, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "Rank": 4, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "CommandName": "Remove-PnPNavigationNode", + "Rank": 1, "Id": 1137, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "Rank": 1, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPNavigationNode", + "Rank": 2, "Id": 1138, - "CommandName": "Remove-PnPPageComponent" + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "CommandName": "Remove-PnPNavigationNode", + "Rank": 3, "Id": 1139, - "CommandName": "Remove-PnPPlannerBucket" + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { + "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Id": 1140, - "CommandName": "Remove-PnPPlannerPlan" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 2, "Id": 1141, - "CommandName": "Remove-PnPPlannerRoster" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 3, "Id": 1142, - "CommandName": "Remove-PnPPlannerRosterMember" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { + "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Id": 1143, - "CommandName": "Remove-PnPPlannerTask" + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { + "CommandName": "Remove-PnPPage", "Rank": 1, - "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Id": 1144, - "CommandName": "Remove-PnPPropertyBagValue" + "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { + "CommandName": "Remove-PnPPage", "Rank": 2, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Id": 1145, - "CommandName": "Remove-PnPPropertyBagValue" + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { + "CommandName": "Remove-PnPPage", "Rank": 3, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Id": 1146, - "CommandName": "Remove-PnPPropertyBagValue" + "Command": "Remove-PnPPage $page" }, { - "Rank": 1, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Remove-PnPPage", + "Rank": 4, "Id": 1147, - "CommandName": "Remove-PnPPublishingImageRendition" + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { + "CommandName": "Remove-PnPPageComponent", "Rank": 1, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Id": 1148, - "CommandName": "Remove-PnPRoleDefinition" + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { + "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, - "Command": "Remove-PnPSdnProvider -Confirm:false", "Id": 1149, - "CommandName": "Remove-PnPSdnProvider" + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { + "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, - "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Id": 1150, - "CommandName": "Remove-PnPSearchConfiguration" + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "Rank": 2, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Remove-PnPPlannerRoster", + "Rank": 1, "Id": 1151, - "CommandName": "Remove-PnPSearchConfiguration" + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Rank": 3, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Remove-PnPPlannerRosterMember", + "Rank": 1, "Id": 1152, - "CommandName": "Remove-PnPSearchConfiguration" + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 4, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Remove-PnPPlannerTask", + "Rank": 1, "Id": 1153, - "CommandName": "Remove-PnPSearchConfiguration" + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { + "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 1154, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { + "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1155, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "Rank": 1, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 3, "Id": 1156, - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { + "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, - "Command": "Remove-PnPSiteCollectionTermStore", "Id": 1157, - "CommandName": "Remove-PnPSiteCollectionTermStore" + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { + "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1158, - "CommandName": "Remove-PnPSiteDesign" + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { + "CommandName": "Remove-PnPSdnProvider", "Rank": 1, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1159, - "CommandName": "Remove-PnPSiteDesignTask" + "Command": "Remove-PnPSdnProvider -Confirm:false" }, { + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1160, - "CommandName": "Remove-PnPSiteGroup" + "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Id": 1161, - "CommandName": "Remove-PnPSiteGroup" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Rank": 1, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 3, "Id": 1162, - "CommandName": "Remove-PnPSiteScript" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Rank": 1, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 4, "Id": 1163, - "CommandName": "Remove-PnPSiteUserInvitations" + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { + "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, - "Command": "Remove-PnPStorageEntity -Key MyKey", "Id": 1164, - "CommandName": "Remove-PnPStorageEntity" + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { + "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Id": 1165, - "CommandName": "Remove-PnPStorageEntity" + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Id": 1166, - "CommandName": "Remove-PnPStoredCredential" + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { + "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Id": 1167, - "CommandName": "Remove-PnPTaxonomyItem" + "Command": "Remove-PnPSiteCollectionTermStore" }, { - "Rank": 2, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "CommandName": "Remove-PnPSiteDesign", + "Rank": 1, "Id": 1168, - "CommandName": "Remove-PnPTaxonomyItem" + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { + "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Id": 1169, - "CommandName": "Remove-PnPTeamsApp" + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "CommandName": "Remove-PnPSiteGroup", + "Rank": 1, "Id": 1170, - "CommandName": "Remove-PnPTeamsApp" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "CommandName": "Remove-PnPSiteGroup", + "Rank": 2, "Id": 1171, - "CommandName": "Remove-PnPTeamsChannel" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { + "CommandName": "Remove-PnPSiteScript", "Rank": 1, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Id": 1172, - "CommandName": "Remove-PnPTeamsChannelUser" + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Remove-PnPSiteUserInvitations", + "Rank": 1, "Id": 1173, - "CommandName": "Remove-PnPTeamsChannelUser" + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Rank": 3, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "CommandName": "Remove-PnPStorageEntity", + "Rank": 1, "Id": 1174, - "CommandName": "Remove-PnPTeamsChannelUser" + "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "CommandName": "Remove-PnPStorageEntity", + "Rank": 2, "Id": 1175, - "CommandName": "Remove-PnPTeamsTab" + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "CommandName": "Remove-PnPStoredCredential", + "Rank": 1, "Id": 1176, - "CommandName": "Remove-PnPTeamsTab" + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "Rank": 3, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 1, "Id": 1177, - "CommandName": "Remove-PnPTeamsTab" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 2, "Id": 1178, - "CommandName": "Remove-PnPTeamsTag" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { + "CommandName": "Remove-PnPTeamsApp", "Rank": 1, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 1179, - "CommandName": "Remove-PnPTeamsTeam" + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { + "CommandName": "Remove-PnPTeamsApp", "Rank": 2, - "Command": "Remove-PnPTeamsTeam -Identity testteam", "Id": 1180, - "CommandName": "Remove-PnPTeamsTeam" + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { + "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Id": 1181, - "CommandName": "Remove-PnPTeamsUser" + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 1, "Id": 1182, - "CommandName": "Remove-PnPTeamsUser" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "Rank": 1, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 2, "Id": 1183, - "CommandName": "Remove-PnPTenantCdnOrigin" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Rank": 1, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 3, "Id": 1184, - "CommandName": "Remove-PnPTenantDeletedSite" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "Rank": 2, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Remove-PnPTeamsTab", + "Rank": 1, "Id": 1185, - "CommandName": "Remove-PnPTenantDeletedSite" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "Rank": 1, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTeamsTab", + "Rank": 2, "Id": 1186, - "CommandName": "Remove-PnPTenantSite" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "Rank": 2, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "CommandName": "Remove-PnPTeamsTab", + "Rank": 3, "Id": 1187, - "CommandName": "Remove-PnPTenantSite" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "Rank": 3, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "CommandName": "Remove-PnPTeamsTag", + "Rank": 1, "Id": 1188, - "CommandName": "Remove-PnPTenantSite" + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { + "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, - "Command": "Remove-PnPTenantSyncClientRestriction", "Id": 1189, - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Rank": 1, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Remove-PnPTeamsTeam", + "Rank": 2, "Id": 1190, - "CommandName": "Remove-PnPTenantTheme" + "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { + "CommandName": "Remove-PnPTeamsUser", "Rank": 1, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1191, - "CommandName": "Remove-PnPTerm" + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { + "CommandName": "Remove-PnPTeamsUser", "Rank": 2, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1192, - "CommandName": "Remove-PnPTerm" + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { + "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1193, - "CommandName": "Remove-PnPTermGroup" + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Rank": 2, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 1, "Id": 1194, - "CommandName": "Remove-PnPTermGroup" + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 3, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 2, "Id": 1195, - "CommandName": "Remove-PnPTermGroup" + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { + "CommandName": "Remove-PnPTenantSite", "Rank": 1, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Id": 1196, - "CommandName": "Remove-PnPTermLabel" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { + "CommandName": "Remove-PnPTenantSite", "Rank": 2, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1197, - "CommandName": "Remove-PnPTermLabel" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "Rank": 1, - "Command": "Remove-PnPUser -Identity 23", + "CommandName": "Remove-PnPTenantSite", + "Rank": 3, "Id": 1198, - "CommandName": "Remove-PnPUser" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "Rank": 2, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1, "Id": 1199, - "CommandName": "Remove-PnPUser" + "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "Rank": 3, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "CommandName": "Remove-PnPTenantTheme", + "Rank": 1, "Id": 1200, - "CommandName": "Remove-PnPUser" + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { + "CommandName": "Remove-PnPTerm", "Rank": 1, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 1201, - "CommandName": "Remove-PnPUserInfo" + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Rank": 1, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Remove-PnPTerm", + "Rank": 2, "Id": 1202, - "CommandName": "Remove-PnPUserProfile" + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { + "CommandName": "Remove-PnPTermGroup", "Rank": 1, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Id": 1203, - "CommandName": "Remove-PnPView" + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Rank": 1, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Remove-PnPTermGroup", + "Rank": 2, "Id": 1204, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "Rank": 1, - "Command": "Remove-PnPWeb -Identity projectA", + "CommandName": "Remove-PnPTermGroup", + "Rank": 3, "Id": 1205, - "CommandName": "Remove-PnPWeb" + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "Rank": 2, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "CommandName": "Remove-PnPTermLabel", + "Rank": 1, "Id": 1206, - "CommandName": "Remove-PnPWeb" + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "Rank": 1, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "CommandName": "Remove-PnPTermLabel", + "Rank": 2, "Id": 1207, - "CommandName": "Remove-PnPWebhookSubscription" + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { + "CommandName": "Remove-PnPUser", "Rank": 1, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1208, - "CommandName": "Remove-PnPWebPart" + "Command": "Remove-PnPUser -Identity 23" }, { + "CommandName": "Remove-PnPUser", "Rank": 2, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Id": 1209, - "CommandName": "Remove-PnPWebPart" + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "Rank": 1, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "CommandName": "Remove-PnPUser", + "Rank": 3, "Id": 1210, - "CommandName": "Remove-PnPWikiPage" + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { + "CommandName": "Remove-PnPUserInfo", "Rank": 1, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Id": 1211, - "CommandName": "Rename-PnPFile" + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Rank": 2, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "CommandName": "Remove-PnPUserProfile", + "Rank": 1, "Id": 1212, - "CommandName": "Rename-PnPFile" + "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "Rank": 3, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "CommandName": "Remove-PnPView", + "Rank": 1, "Id": 1213, - "CommandName": "Rename-PnPFile" + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Id": 1214, - "CommandName": "Rename-PnPFolder" + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { + "CommandName": "Remove-PnPWeb", "Rank": 1, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1215, - "CommandName": "Repair-PnPSite" + "Command": "Remove-PnPWeb -Identity projectA" }, { + "CommandName": "Remove-PnPWeb", "Rank": 2, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Id": 1216, - "CommandName": "Repair-PnPSite" + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { + "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, - "Command": "Request-PnPAccessToken", "Id": 1217, - "CommandName": "Request-PnPAccessToken" + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "Rank": 2, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "CommandName": "Remove-PnPWebPart", + "Rank": 1, "Id": 1218, - "CommandName": "Request-PnPAccessToken" + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 3, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "CommandName": "Remove-PnPWebPart", + "Rank": 2, "Id": 1219, - "CommandName": "Request-PnPAccessToken" + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "Rank": 4, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "CommandName": "Remove-PnPWikiPage", + "Rank": 1, "Id": 1220, - "CommandName": "Request-PnPAccessToken" + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { + "CommandName": "Rename-PnPFile", "Rank": 1, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Id": 1221, - "CommandName": "Request-PnPPersonalSite" + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { + "CommandName": "Rename-PnPFile", "Rank": 2, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Id": 1222, - "CommandName": "Request-PnPPersonalSite" + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "Rank": 1, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "CommandName": "Rename-PnPFile", + "Rank": 3, "Id": 1223, - "CommandName": "Request-PnPReIndexList" + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { + "CommandName": "Rename-PnPFolder", "Rank": 1, - "Command": "Request-PnPReIndexWeb", "Id": 1224, - "CommandName": "Request-PnPReIndexWeb" + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { + "CommandName": "Repair-PnPSite", "Rank": 1, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Id": 1225, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { + "CommandName": "Repair-PnPSite", "Rank": 2, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Id": 1226, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Rank": 3, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "CommandName": "Request-PnPAccessToken", + "Rank": 1, "Id": 1227, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Command": "Request-PnPAccessToken" }, { - "Rank": 1, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "CommandName": "Request-PnPAccessToken", + "Rank": 2, "Id": 1228, - "CommandName": "Reset-PnPFileVersion" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "Rank": 2, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "CommandName": "Request-PnPAccessToken", + "Rank": 3, "Id": 1229, - "CommandName": "Reset-PnPFileVersion" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "Rank": 1, - "Command": "Reset-PnPLabel -List \"Demo List\"", + "CommandName": "Request-PnPAccessToken", + "Rank": 4, "Id": 1230, - "CommandName": "Reset-PnPLabel" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "Rank": 2, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "CommandName": "Request-PnPPersonalSite", + "Rank": 1, "Id": 1231, - "CommandName": "Reset-PnPLabel" + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "Rank": 1, - "Command": "Reset-PnPMicrosoft365GroupExpiration", + "CommandName": "Request-PnPPersonalSite", + "Rank": 2, "Id": 1232, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { + "CommandName": "Request-PnPReIndexList", "Rank": 1, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Id": 1233, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { + "CommandName": "Request-PnPReIndexWeb", "Rank": 1, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Id": 1234, - "CommandName": "Resolve-PnPFolder" + "Command": "Request-PnPReIndexWeb" }, { + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1235, - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "Rank": 1, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 2, "Id": 1236, - "CommandName": "Restore-PnPFileVersion" + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "Rank": 2, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 3, "Id": 1237, - "CommandName": "Restore-PnPFileVersion" + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "Rank": 3, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Reset-PnPFileVersion", + "Rank": 1, "Id": 1238, - "CommandName": "Restore-PnPFileVersion" + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "Rank": 1, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Reset-PnPFileVersion", + "Rank": 2, "Id": 1239, - "CommandName": "Restore-PnPListItemVersion" + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "Rank": 2, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Reset-PnPLabel", + "Rank": 1, "Id": 1240, - "CommandName": "Restore-PnPListItemVersion" + "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "Rank": 1, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Reset-PnPLabel", + "Rank": 2, "Id": 1241, - "CommandName": "Restore-PnPRecycleBinItem" + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1242, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Rank": 2, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Rank": 1, "Id": 1243, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { + "CommandName": "Resolve-PnPFolder", "Rank": 1, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1244, - "CommandName": "Restore-PnPTenantSite" + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "Rank": 2, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Rank": 1, "Id": 1245, - "CommandName": "Restore-PnPTenantSite" + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Rank": 3, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "CommandName": "Restore-PnPFileVersion", + "Rank": 1, "Id": 1246, - "CommandName": "Restore-PnPTenantSite" + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Rank": 1, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "CommandName": "Restore-PnPFileVersion", + "Rank": 2, "Id": 1247, - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "Rank": 1, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Restore-PnPFileVersion", + "Rank": 3, "Id": 1248, - "CommandName": "Revoke-PnPHubSiteRights" + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { + "CommandName": "Restore-PnPListItemVersion", "Rank": 1, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 1249, - "CommandName": "Revoke-PnPSiteDesignRights" + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Rank": 1, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Restore-PnPListItemVersion", + "Rank": 2, "Id": 1250, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { + "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, - "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Id": 1251, - "CommandName": "Revoke-PnPUserSession" + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { + "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, - "Command": "Save-PnPPageConversionLog", "Id": 1252, - "CommandName": "Save-PnPPageConversionLog" + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 1, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 2, "Id": 1253, - "CommandName": "Save-PnPSiteTemplate" + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { + "CommandName": "Restore-PnPTenantSite", "Rank": 1, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Id": 1254, - "CommandName": "Save-PnPTenantTemplate" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 1, - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "CommandName": "Restore-PnPTenantSite", + "Rank": 2, "Id": 1255, - "CommandName": "Send-PnPMail" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "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", + "CommandName": "Restore-PnPTenantSite", + "Rank": 3, "Id": 1256, - "CommandName": "Send-PnPMail" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "Rank": 3, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Rank": 1, "Id": 1257, - "CommandName": "Send-PnPMail" + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "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", + "CommandName": "Revoke-PnPHubSiteRights", + "Rank": 1, "Id": 1258, - "CommandName": "Send-PnPMail" + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "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", + "CommandName": "Revoke-PnPSiteDesignRights", + "Rank": 1, "Id": 1259, - "CommandName": "Send-PnPMail" + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "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\"", + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Rank": 1, "Id": 1260, - "CommandName": "Send-PnPMail" + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { + "CommandName": "Revoke-PnPUserSession", "Rank": 1, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Id": 1261, - "CommandName": "Set-PnPAdaptiveScopeProperty" + "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { + "CommandName": "Save-PnPPageConversionLog", "Rank": 1, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1262, - "CommandName": "Set-PnPApplicationCustomizer" + "Command": "Save-PnPPageConversionLog" }, { - "Rank": 2, - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "CommandName": "Save-PnPSiteTemplate", + "Rank": 1, "Id": 1263, - "CommandName": "Set-PnPApplicationCustomizer" + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { + "CommandName": "Save-PnPTenantTemplate", "Rank": 1, - "Command": "Set-PnPAppSideLoading -On", "Id": 1264, - "CommandName": "Set-PnPAppSideLoading" + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "Rank": 2, - "Command": "Set-PnPAppSideLoading -Off", + "CommandName": "Send-PnPMail", + "Rank": 1, "Id": 1265, - "CommandName": "Set-PnPAppSideLoading" + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Rank": 1, - "Command": "Set-PnPAuditing -EnableAll", + "CommandName": "Send-PnPMail", + "Rank": 2, "Id": 1266, - "CommandName": "Set-PnPAuditing" + "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" }, { - "Rank": 2, - "Command": "Set-PnPAuditing -DisableAll", + "CommandName": "Send-PnPMail", + "Rank": 3, "Id": 1267, - "CommandName": "Set-PnPAuditing" + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Rank": 3, - "Command": "Set-PnPAuditing -RetentionTime 7", + "CommandName": "Send-PnPMail", + "Rank": 4, "Id": 1268, - "CommandName": "Set-PnPAuditing" + "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" }, { - "Rank": 4, - "Command": "Set-PnPAuditing -TrimAuditLog", + "CommandName": "Send-PnPMail", + "Rank": 5, "Id": 1269, - "CommandName": "Set-PnPAuditing" + "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" }, { - "Rank": 5, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "CommandName": "Send-PnPMail", + "Rank": 6, "Id": 1270, - "CommandName": "Set-PnPAuditing" + "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\"" }, { + "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Id": 1271, - "CommandName": "Set-PnPAvailablePageLayouts" + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { + "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Id": 1272, - "CommandName": "Set-PnPAzureADAppSitePermission" + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { + "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Id": 1273, - "CommandName": "Set-PnPAzureADAppSitePermission" + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { + "CommandName": "Set-PnPAppSideLoading", "Rank": 1, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Id": 1274, - "CommandName": "Set-PnPAzureADGroup" + "Command": "Set-PnPAppSideLoading -On" }, { + "CommandName": "Set-PnPAppSideLoading", "Rank": 2, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Id": 1275, - "CommandName": "Set-PnPAzureADGroup" + "Command": "Set-PnPAppSideLoading -Off" }, { - "Rank": 3, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPAuditing", + "Rank": 1, "Id": 1276, - "CommandName": "Set-PnPAzureADGroup" + "Command": "Set-PnPAuditing -EnableAll" }, { - "Rank": 1, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "CommandName": "Set-PnPAuditing", + "Rank": 2, "Id": 1277, - "CommandName": "Set-PnPBrowserIdleSignout" + "Command": "Set-PnPAuditing -DisableAll" }, { - "Rank": 2, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "CommandName": "Set-PnPAuditing", + "Rank": 3, "Id": 1278, - "CommandName": "Set-PnPBrowserIdleSignout" + "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "Rank": 3, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "CommandName": "Set-PnPAuditing", + "Rank": 4, "Id": 1279, - "CommandName": "Set-PnPBrowserIdleSignout" + "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "Rank": 1, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "CommandName": "Set-PnPAuditing", + "Rank": 5, "Id": 1280, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "Rank": 2, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "CommandName": "Set-PnPAvailablePageLayouts", + "Rank": 1, "Id": 1281, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { + "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Id": 1282, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { + "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Id": 1283, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "Rank": 3, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "CommandName": "Set-PnPAzureADGroup", + "Rank": 1, "Id": 1284, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "Rank": 4, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "CommandName": "Set-PnPAzureADGroup", + "Rank": 2, "Id": 1285, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Rank": 1, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPAzureADGroup", + "Rank": 3, "Id": 1286, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "Rank": 2, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 1, "Id": 1287, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "Rank": 3, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 2, "Id": 1288, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "Rank": 4, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 3, "Id": 1289, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "Rank": 5, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 1, "Id": 1290, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "Rank": 1, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 2, "Id": 1291, - "CommandName": "Set-PnPDefaultColumnValues" + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "Rank": 2, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 1, "Id": 1292, - "CommandName": "Set-PnPDefaultColumnValues" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "Rank": 3, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 2, "Id": 1293, - "CommandName": "Set-PnPDefaultColumnValues" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "Rank": 4, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 3, "Id": 1294, - "CommandName": "Set-PnPDefaultColumnValues" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "Rank": 1, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 4, "Id": 1295, - "CommandName": "Set-PnPDefaultContentTypeToList" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { + "CommandName": "Set-PnPContentType", "Rank": 1, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Id": 1296, - "CommandName": "Set-PnPDefaultPageLayout" + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { + "CommandName": "Set-PnPContentType", "Rank": 2, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Id": 1297, - "CommandName": "Set-PnPDefaultPageLayout" + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { + "CommandName": "Set-PnPContentType", "Rank": 3, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Id": 1298, - "CommandName": "Set-PnPDefaultPageLayout" + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Rank": 1, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "CommandName": "Set-PnPContentType", + "Rank": 4, "Id": 1299, - "CommandName": "Set-PnPDisableSpacesActivation" + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Rank": 2, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPContentType", + "Rank": 5, "Id": 1300, - "CommandName": "Set-PnPDisableSpacesActivation" + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Rank": 3, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 1, "Id": 1301, - "CommandName": "Set-PnPDisableSpacesActivation" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "Rank": 1, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 2, "Id": 1302, - "CommandName": "Set-PnPDocumentSetField" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "Rank": 2, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 3, "Id": 1303, - "CommandName": "Set-PnPDocumentSetField" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "Rank": 1, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 4, "Id": 1304, - "CommandName": "Set-PnPField" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "Rank": 2, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "CommandName": "Set-PnPDefaultContentTypeToList", + "Rank": 1, "Id": 1305, - "CommandName": "Set-PnPField" + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "Rank": 3, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 1, "Id": 1306, - "CommandName": "Set-PnPField" + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "Rank": 1, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 2, "Id": 1307, - "CommandName": "Set-PnPFileCheckedIn" + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "Rank": 2, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 3, "Id": 1308, - "CommandName": "Set-PnPFileCheckedIn" + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { + "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Id": 1309, - "CommandName": "Set-PnPFileCheckedOut" + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "Rank": 1, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 2, "Id": 1310, - "CommandName": "Set-PnPFolderPermission" + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Rank": 2, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 3, "Id": 1311, - "CommandName": "Set-PnPFolderPermission" + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Rank": 3, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPDocumentSetField", + "Rank": 1, "Id": 1312, - "CommandName": "Set-PnPFolderPermission" + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "Rank": 1, - "Command": "Set-PnPFooter -Enabled:$true", + "CommandName": "Set-PnPDocumentSetField", + "Rank": 2, "Id": 1313, - "CommandName": "Set-PnPFooter" + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "Rank": 2, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "CommandName": "Set-PnPField", + "Rank": 1, "Id": 1314, - "CommandName": "Set-PnPFooter" + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "Rank": 3, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "CommandName": "Set-PnPField", + "Rank": 2, "Id": 1315, - "CommandName": "Set-PnPFooter" + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "Rank": 4, - "Command": "Set-PnPFooter -LogoUrl \"\"", + "CommandName": "Set-PnPField", + "Rank": 3, "Id": 1316, - "CommandName": "Set-PnPFooter" + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { + "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Id": 1317, - "CommandName": "Set-PnPGraphSubscription" + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "Rank": 1, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 2, "Id": 1318, - "CommandName": "Set-PnPGroup" + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "Rank": 2, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "CommandName": "Set-PnPFileCheckedOut", + "Rank": 1, "Id": 1319, - "CommandName": "Set-PnPGroup" + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { + "CommandName": "Set-PnPFolderPermission", "Rank": 1, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Id": 1320, - "CommandName": "Set-PnPGroupPermissions" + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { + "CommandName": "Set-PnPFolderPermission", "Rank": 2, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Id": 1321, - "CommandName": "Set-PnPGroupPermissions" + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { + "CommandName": "Set-PnPFolderPermission", "Rank": 3, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Id": 1322, - "CommandName": "Set-PnPGroupPermissions" + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Rank": 4, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "CommandName": "Set-PnPFooter", + "Rank": 1, "Id": 1323, - "CommandName": "Set-PnPGroupPermissions" + "Command": "Set-PnPFooter -Enabled:$true" }, { - "Rank": 5, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "CommandName": "Set-PnPFooter", + "Rank": 2, "Id": 1324, - "CommandName": "Set-PnPGroupPermissions" + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "Rank": 1, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "CommandName": "Set-PnPFooter", + "Rank": 3, "Id": 1325, - "CommandName": "Set-PnPHideDefaultThemes" + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "Rank": 2, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "CommandName": "Set-PnPFooter", + "Rank": 4, "Id": 1326, - "CommandName": "Set-PnPHideDefaultThemes" + "Command": "Set-PnPFooter -LogoUrl \"\"" }, { + "CommandName": "Set-PnPGraphSubscription", "Rank": 1, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Id": 1327, - "CommandName": "Set-PnPHomePage" + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "Rank": 2, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "CommandName": "Set-PnPGroup", + "Rank": 1, "Id": 1328, - "CommandName": "Set-PnPHomePage" + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "Rank": 1, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "CommandName": "Set-PnPGroup", + "Rank": 2, "Id": 1329, - "CommandName": "Set-PnPHomeSite" + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "Rank": 2, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "CommandName": "Set-PnPGroupPermissions", + "Rank": 1, "Id": 1330, - "CommandName": "Set-PnPHomeSite" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "Rank": 1, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "CommandName": "Set-PnPGroupPermissions", + "Rank": 2, "Id": 1331, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "Rank": 2, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "CommandName": "Set-PnPGroupPermissions", + "Rank": 3, "Id": 1332, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "Rank": 3, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "CommandName": "Set-PnPGroupPermissions", + "Rank": 4, "Id": 1333, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "Rank": 4, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "CommandName": "Set-PnPGroupPermissions", + "Rank": 5, "Id": 1334, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "Rank": 5, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 1, "Id": 1335, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "Rank": 6, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 2, "Id": 1336, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { + "CommandName": "Set-PnPHomePage", "Rank": 1, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Id": 1337, - "CommandName": "Set-PnPImageListItemColumn" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { + "CommandName": "Set-PnPHomePage", "Rank": 2, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Id": 1338, - "CommandName": "Set-PnPImageListItemColumn" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { + "CommandName": "Set-PnPHomeSite", "Rank": 1, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Id": 1339, - "CommandName": "Set-PnPIndexedProperties" + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "Rank": 1, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "CommandName": "Set-PnPHomeSite", + "Rank": 2, "Id": 1340, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "Rank": 2, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "CommandName": "Set-PnPHubSite", + "Rank": 1, "Id": 1341, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "Rank": 1, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "CommandName": "Set-PnPHubSite", + "Rank": 2, "Id": 1342, - "CommandName": "Set-PnPKnowledgeHubSite" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "Rank": 1, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "CommandName": "Set-PnPHubSite", + "Rank": 3, "Id": 1343, - "CommandName": "Set-PnPLabel" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "Rank": 2, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "CommandName": "Set-PnPHubSite", + "Rank": 4, "Id": 1344, - "CommandName": "Set-PnPLabel" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "Rank": 1, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "CommandName": "Set-PnPHubSite", + "Rank": 5, "Id": 1345, - "CommandName": "Set-PnPList" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "Rank": 2, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "CommandName": "Set-PnPHubSite", + "Rank": 6, "Id": 1346, - "CommandName": "Set-PnPList" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "Rank": 3, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 1, "Id": 1347, - "CommandName": "Set-PnPList" + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "Rank": 4, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 2, "Id": 1348, - "CommandName": "Set-PnPList" + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "Rank": 5, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "CommandName": "Set-PnPIndexedProperties", + "Rank": 1, "Id": 1349, - "CommandName": "Set-PnPList" + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "Rank": 6, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 1, "Id": 1350, - "CommandName": "Set-PnPList" + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "Rank": 7, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 2, "Id": 1351, - "CommandName": "Set-PnPList" + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "Rank": 8, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPKnowledgeHubSite", + "Rank": 1, "Id": 1352, - "CommandName": "Set-PnPList" + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "Rank": 9, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "CommandName": "Set-PnPLabel", + "Rank": 1, "Id": 1353, - "CommandName": "Set-PnPList" + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "Rank": 10, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "CommandName": "Set-PnPLabel", + "Rank": 2, "Id": 1354, - "CommandName": "Set-PnPList" + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "Rank": 11, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "CommandName": "Set-PnPList", + "Rank": 1, "Id": 1355, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "Rank": 1, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "CommandName": "Set-PnPList", + "Rank": 2, "Id": 1356, - "CommandName": "Set-PnPListInformationRightsManagement" + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "Rank": 2, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "CommandName": "Set-PnPList", + "Rank": 3, "Id": 1357, - "CommandName": "Set-PnPListInformationRightsManagement" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "Rank": 1, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPList", + "Rank": 4, "Id": 1358, - "CommandName": "Set-PnPListItem" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "Rank": 2, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPList", + "Rank": 5, "Id": 1359, - "CommandName": "Set-PnPListItem" + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "Rank": 3, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPList", + "Rank": 6, "Id": 1360, - "CommandName": "Set-PnPListItem" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "Rank": 4, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "CommandName": "Set-PnPList", + "Rank": 7, "Id": 1361, - "CommandName": "Set-PnPListItem" + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "Rank": 5, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "CommandName": "Set-PnPList", + "Rank": 8, "Id": 1362, - "CommandName": "Set-PnPListItem" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "Rank": 1, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Set-PnPList", + "Rank": 9, "Id": 1363, - "CommandName": "Set-PnPListItemAsRecord" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "Rank": 2, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "CommandName": "Set-PnPList", + "Rank": 10, "Id": 1364, - "CommandName": "Set-PnPListItemAsRecord" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "Rank": 1, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPList", + "Rank": 11, "Id": 1365, - "CommandName": "Set-PnPListItemPermission" + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "Rank": 2, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 1, "Id": 1366, - "CommandName": "Set-PnPListItemPermission" + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "Rank": 3, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 2, "Id": 1367, - "CommandName": "Set-PnPListItemPermission" + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "Rank": 4, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "CommandName": "Set-PnPListItem", + "Rank": 1, "Id": 1368, - "CommandName": "Set-PnPListItemPermission" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 5, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "CommandName": "Set-PnPListItem", + "Rank": 2, "Id": 1369, - "CommandName": "Set-PnPListItemPermission" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 1, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListItem", + "Rank": 3, "Id": 1370, - "CommandName": "Set-PnPListPermission" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 2, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListItem", + "Rank": 4, "Id": 1371, - "CommandName": "Set-PnPListPermission" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "Rank": 1, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "CommandName": "Set-PnPListItem", + "Rank": 5, "Id": 1372, - "CommandName": "Set-PnPListRecordDeclaration" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "Rank": 2, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 1, "Id": 1373, - "CommandName": "Set-PnPListRecordDeclaration" + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Rank": 1, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 2, "Id": 1374, - "CommandName": "Set-PnPMasterPage" + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "Rank": 2, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPListItemPermission", + "Rank": 1, "Id": 1375, - "CommandName": "Set-PnPMasterPage" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Rank": 3, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPListItemPermission", + "Rank": 2, "Id": 1376, - "CommandName": "Set-PnPMasterPage" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Rank": 4, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPListItemPermission", + "Rank": 3, "Id": 1377, - "CommandName": "Set-PnPMasterPage" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPListItemPermission", + "Rank": 4, "Id": 1378, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPListItemPermission", + "Rank": 5, "Id": 1379, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "CommandName": "Set-PnPListPermission", + "Rank": 1, "Id": 1380, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPListPermission", + "Rank": 2, "Id": 1381, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 1, "Id": 1382, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 2, "Id": 1383, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { + "CommandName": "Set-PnPMasterPage", "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Id": 1384, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { + "CommandName": "Set-PnPMasterPage", "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Id": 1385, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { + "CommandName": "Set-PnPMasterPage", "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1386, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMasterPage", + "Rank": 4, "Id": 1387, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 1, "Id": 1388, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 2, "Id": 1389, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, "Id": 1390, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 1, "Id": 1391, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 2, "Id": 1392, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, "Id": 1393, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 1, "Id": 1394, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 2, "Id": 1395, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 1, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, "Id": 1396, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 2, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 1, "Id": 1397, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "Rank": 3, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 2, "Id": 1398, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 4, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, "Id": 1399, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 5, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 1, "Id": 1400, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "Rank": 6, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 2, "Id": 1401, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 1, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, "Id": 1402, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 2, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 1, "Id": 1403, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "Rank": 1, - "Command": "Set-PnPMinimalDownloadStrategy -Off", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 2, "Id": 1404, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 2, - "Command": "Set-PnPMinimalDownloadStrategy -On", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, "Id": 1405, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Id": 1406, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Id": 1407, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Id": 1408, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Id": 1409, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Id": 1410, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Id": 1411, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Rank": 7, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 1, "Id": 1412, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "Rank": 8, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 2, "Id": 1413, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "Rank": 9, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 1, "Id": 1414, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "Rank": 10, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 2, "Id": 1415, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "Rank": 11, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "CommandName": "Set-PnPPage", + "Rank": 1, "Id": 1416, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "Rank": 1, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "CommandName": "Set-PnPPage", + "Rank": 2, "Id": 1417, - "CommandName": "Set-PnPPageTextPart" + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "Rank": 1, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "CommandName": "Set-PnPPage", + "Rank": 3, "Id": 1418, - "CommandName": "Set-PnPPageWebPart" + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "Rank": 2, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "CommandName": "Set-PnPPage", + "Rank": 4, "Id": 1419, - "CommandName": "Set-PnPPageWebPart" + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "Rank": 1, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "CommandName": "Set-PnPPage", + "Rank": 5, "Id": 1420, - "CommandName": "Set-PnPPlannerBucket" + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "Rank": 1, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "CommandName": "Set-PnPPage", + "Rank": 6, "Id": 1421, - "CommandName": "Set-PnPPlannerConfiguration" + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "Rank": 2, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "CommandName": "Set-PnPPage", + "Rank": 7, "Id": 1422, - "CommandName": "Set-PnPPlannerConfiguration" + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Rank": 1, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "CommandName": "Set-PnPPage", + "Rank": 8, "Id": 1423, - "CommandName": "Set-PnPPlannerPlan" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "Rank": 1, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "CommandName": "Set-PnPPage", + "Rank": 9, "Id": 1424, - "CommandName": "Set-PnPPlannerTask" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Rank": 2, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "CommandName": "Set-PnPPage", + "Rank": 10, "Id": 1425, - "CommandName": "Set-PnPPlannerTask" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Rank": 3, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "CommandName": "Set-PnPPage", + "Rank": 11, "Id": 1426, - "CommandName": "Set-PnPPlannerTask" + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { + "CommandName": "Set-PnPPageTextPart", "Rank": 1, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 1427, - "CommandName": "Set-PnPPlannerUserPolicy" + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { + "CommandName": "Set-PnPPageWebPart", "Rank": 1, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Id": 1428, - "CommandName": "Set-PnPPropertyBagValue" + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { + "CommandName": "Set-PnPPageWebPart", "Rank": 2, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Id": 1429, - "CommandName": "Set-PnPPropertyBagValue" + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "Rank": 3, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "CommandName": "Set-PnPPlannerBucket", + "Rank": 1, "Id": 1430, - "CommandName": "Set-PnPPropertyBagValue" + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { + "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Id": 1431, - "CommandName": "Set-PnPRequestAccessEmails" + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { + "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, - "Command": "Set-PnPRequestAccessEmails -Disabled", "Id": 1432, - "CommandName": "Set-PnPRequestAccessEmails" + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "Rank": 3, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "CommandName": "Set-PnPPlannerPlan", + "Rank": 1, "Id": 1433, - "CommandName": "Set-PnPRequestAccessEmails" + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { + "CommandName": "Set-PnPPlannerTask", "Rank": 1, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Id": 1434, - "CommandName": "Set-PnPRoleDefinition" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { + "CommandName": "Set-PnPPlannerTask", "Rank": 2, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Id": 1435, - "CommandName": "Set-PnPRoleDefinition" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { + "CommandName": "Set-PnPPlannerTask", "Rank": 3, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Id": 1436, - "CommandName": "Set-PnPRoleDefinition" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Rank": 4, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "CommandName": "Set-PnPPlannerUserPolicy", + "Rank": 1, "Id": 1437, - "CommandName": "Set-PnPRoleDefinition" + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { + "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, - "Command": "Set-PnPSearchConfiguration -Configuration $config", "Id": 1438, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { + "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Id": 1439, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { + "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Id": 1440, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "Rank": 4, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 1, "Id": 1441, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "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", + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 2, "Id": 1442, - "CommandName": "Set-PnPSearchExternalItem" + "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "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\"", + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 3, "Id": 1443, - "CommandName": "Set-PnPSearchExternalItem" + "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { + "CommandName": "Set-PnPRoleDefinition", "Rank": 1, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Id": 1444, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { + "CommandName": "Set-PnPRoleDefinition", "Rank": 2, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Id": 1445, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { + "CommandName": "Set-PnPRoleDefinition", "Rank": 3, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Id": 1446, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { + "CommandName": "Set-PnPRoleDefinition", "Rank": 4, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Id": 1447, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "Rank": 5, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 1, "Id": 1448, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "Rank": 6, - "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 2, "Id": 1449, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Rank": 7, - "Command": "Set-PnPSearchSettings -SearchScope Hub", + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 3, "Id": 1450, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Rank": 1, - "Command": "Set-PnPSite -Classification \"HBI\"", + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 4, "Id": 1451, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Rank": 2, - "Command": "Set-PnPSite -Classification $null", + "CommandName": "Set-PnPSearchExternalItem", + "Rank": 1, "Id": 1452, - "CommandName": "Set-PnPSite" + "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" }, { - "Rank": 3, - "Command": "Set-PnPSite -DisableFlows", + "CommandName": "Set-PnPSearchExternalItem", + "Rank": 2, "Id": 1453, - "CommandName": "Set-PnPSite" + "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\"" }, { - "Rank": 4, - "Command": "Set-PnPSite -DisableFlows:$false", + "CommandName": "Set-PnPSearchSettings", + "Rank": 1, "Id": 1454, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "Rank": 5, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "CommandName": "Set-PnPSearchSettings", + "Rank": 2, "Id": 1455, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "Rank": 6, - "Command": "Set-PnPSite -NoScriptSite $false", + "CommandName": "Set-PnPSearchSettings", + "Rank": 3, "Id": 1456, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "Rank": 7, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPSearchSettings", + "Rank": 4, "Id": 1457, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "Rank": 8, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "CommandName": "Set-PnPSearchSettings", + "Rank": 5, "Id": 1458, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "Rank": 9, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "CommandName": "Set-PnPSearchSettings", + "Rank": 6, "Id": 1459, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "Rank": 10, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "CommandName": "Set-PnPSearchSettings", + "Rank": 7, "Id": 1460, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "Rank": 11, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "CommandName": "Set-PnPSite", + "Rank": 1, "Id": 1461, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "Rank": 12, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "CommandName": "Set-PnPSite", + "Rank": 2, "Id": 1462, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -Classification $null" }, { - "Rank": 13, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "CommandName": "Set-PnPSite", + "Rank": 3, "Id": 1463, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -DisableFlows" }, { - "Rank": 14, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", + "Rank": 4, "Id": 1464, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -DisableFlows:$false" }, { - "Rank": 15, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", + "Rank": 5, "Id": 1465, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "Rank": 16, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", + "Rank": 6, "Id": 1466, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -NoScriptSite $false" }, { - "Rank": 17, - "Command": "Set-PnPSite -CancelVPForExistingLibs", + "CommandName": "Set-PnPSite", + "Rank": 7, "Id": 1467, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "Rank": 1, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "CommandName": "Set-PnPSite", + "Rank": 8, "Id": 1468, - "CommandName": "Set-PnPSiteClassification" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "Rank": 1, - "Command": "Set-PnPSiteClosure -State Open", + "CommandName": "Set-PnPSite", + "Rank": 9, "Id": 1469, - "CommandName": "Set-PnPSiteClosure" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "Rank": 2, - "Command": "Set-PnPSiteClosure -State Closed", + "CommandName": "Set-PnPSite", + "Rank": 10, "Id": 1470, - "CommandName": "Set-PnPSiteClosure" + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "Rank": 1, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "CommandName": "Set-PnPSite", + "Rank": 11, "Id": 1471, - "CommandName": "Set-PnPSiteDesign" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "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\"", + "CommandName": "Set-PnPSite", + "Rank": 12, "Id": 1472, - "CommandName": "Set-PnPSiteDesign" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "Rank": 1, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "CommandName": "Set-PnPSite", + "Rank": 13, "Id": 1473, - "CommandName": "Set-PnPSiteGroup" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "Rank": 2, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "CommandName": "Set-PnPSite", + "Rank": 14, "Id": 1474, - "CommandName": "Set-PnPSiteGroup" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "Rank": 1, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Set-PnPSite", + "Rank": 15, "Id": 1475, - "CommandName": "Set-PnPSitePolicy" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "Rank": 1, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSite", + "Rank": 16, "Id": 1476, - "CommandName": "Set-PnPSiteScript" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "Rank": 1, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSite", + "Rank": 17, "Id": 1477, - "CommandName": "Set-PnPSiteScriptPackage" + "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { + "CommandName": "Set-PnPSiteClassification", "Rank": 1, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Id": 1478, - "CommandName": "Set-PnPSiteSensitivityLabel" + "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "Rank": 2, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "CommandName": "Set-PnPSiteClosure", + "Rank": 1, "Id": 1479, - "CommandName": "Set-PnPSiteSensitivityLabel" + "Command": "Set-PnPSiteClosure -State Open" }, { - "Rank": 1, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteClosure", + "Rank": 2, "Id": 1480, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteClosure -State Closed" }, { - "Rank": 2, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteDesign", + "Rank": 1, "Id": 1481, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "Rank": 3, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteDesign", + "Rank": 2, "Id": 1482, - "CommandName": "Set-PnPSiteTemplateMetadata" + "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\"" }, { - "Rank": 4, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteGroup", + "Rank": 1, "Id": 1483, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "Rank": 5, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteGroup", + "Rank": 2, "Id": 1484, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "Rank": 6, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSitePolicy", + "Rank": 1, "Id": 1485, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { + "CommandName": "Set-PnPSiteScript", "Rank": 1, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Id": 1486, - "CommandName": "Set-PnPStorageEntity" + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Rank": 2, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPSiteScriptPackage", + "Rank": 1, "Id": 1487, - "CommandName": "Set-PnPStorageEntity" + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { + "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 1488, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { + "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 1489, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 1490, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 1491, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "Rank": 1, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 3, "Id": 1492, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Rank": 2, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 4, "Id": 1493, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Rank": 1, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 5, "Id": 1494, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Rank": 2, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 6, "Id": 1495, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Rank": 3, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "CommandName": "Set-PnPStorageEntity", + "Rank": 1, "Id": 1496, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Rank": 1, - "Command": "Set-PnPTeamifyPromptHidden", + "CommandName": "Set-PnPStorageEntity", + "Rank": 2, "Id": 1497, - "CommandName": "Set-PnPTeamifyPromptHidden" + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Id": 1498, - "CommandName": "Set-PnPTeamsChannel" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Id": 1499, - "CommandName": "Set-PnPTeamsChannel" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Id": 1500, - "CommandName": "Set-PnpTeamsChannelUser" + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Id": 1501, - "CommandName": "Set-PnpTeamsChannelUser" + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Id": 1502, - "CommandName": "Set-PnPTeamsTab" + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 2, "Id": 1503, - "CommandName": "Set-PnPTeamsTag" + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Id": 1504, - "CommandName": "Set-PnPTeamsTeam" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Id": 1505, - "CommandName": "Set-PnPTeamsTeam" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Id": 1506, - "CommandName": "Set-PnPTeamsTeam" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "Rank": 4, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "CommandName": "Set-PnPTeamifyPromptHidden", + "Rank": 1, "Id": 1507, - "CommandName": "Set-PnPTeamsTeam" + "Command": "Set-PnPTeamifyPromptHidden" }, { + "CommandName": "Set-PnPTeamsChannel", "Rank": 1, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Id": 1508, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { + "CommandName": "Set-PnPTeamsChannel", "Rank": 2, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Id": 1509, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "Rank": 3, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 1, "Id": 1510, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 2, "Id": 1511, - "CommandName": "Set-PnPTeamsTeamPicture" + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { + "CommandName": "Set-PnPTeamsTab", "Rank": 1, - "Command": "Set-PnPTemporarilyDisableAppBar $true", "Id": 1512, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "Rank": 2, - "Command": "Set-PnPTemporarilyDisableAppBar $false", + "CommandName": "Set-PnPTeamsTag", + "Rank": 1, "Id": 1513, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { + "CommandName": "Set-PnPTeamsTeam", "Rank": 1, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "Id": 1514, - "CommandName": "Set-PnPTenant" + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { + "CommandName": "Set-PnPTeamsTeam", "Rank": 2, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Id": 1515, - "CommandName": "Set-PnPTenant" + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { + "CommandName": "Set-PnPTeamsTeam", "Rank": 3, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Id": 1516, - "CommandName": "Set-PnPTenant" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { + "CommandName": "Set-PnPTeamsTeam", "Rank": 4, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Id": 1517, - "CommandName": "Set-PnPTenant" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { + "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Id": 1518, - "CommandName": "Set-PnPTenantAppCatalogUrl" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "Rank": 1, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 2, "Id": 1519, - "CommandName": "Set-PnPTenantCdnEnabled" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "Rank": 2, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 3, "Id": 1520, - "CommandName": "Set-PnPTenantCdnEnabled" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "Rank": 3, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "CommandName": "Set-PnPTeamsTeamPicture", + "Rank": 1, "Id": 1521, - "CommandName": "Set-PnPTenantCdnEnabled" + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "Id": 1522, - "CommandName": "Set-PnPTenantCdnPolicy" + "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Id": 1523, - "CommandName": "Set-PnPTenantCdnPolicy" + "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { + "CommandName": "Set-PnPTenant", "Rank": 1, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Id": 1524, - "CommandName": "Set-PnPTenantSite" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { + "CommandName": "Set-PnPTenant", "Rank": 2, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Id": 1525, - "CommandName": "Set-PnPTenantSite" + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { + "CommandName": "Set-PnPTenant", "Rank": 3, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Id": 1526, - "CommandName": "Set-PnPTenantSite" + "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { + "CommandName": "Set-PnPTenant", "Rank": 4, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1527, - "CommandName": "Set-PnPTenantSite" + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "Rank": 5, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Rank": 1, "Id": 1528, - "CommandName": "Set-PnPTenantSite" + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { + "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Id": 1529, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { + "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Id": 1530, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "Rank": 1, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 3, "Id": 1531, - "CommandName": "Set-PnPTerm" + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "Rank": 2, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 1, "Id": 1532, - "CommandName": "Set-PnPTerm" + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "Rank": 3, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 2, "Id": 1533, - "CommandName": "Set-PnPTerm" + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "Rank": 4, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "CommandName": "Set-PnPTenantSite", + "Rank": 1, "Id": 1534, - "CommandName": "Set-PnPTerm" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "Rank": 1, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "CommandName": "Set-PnPTenantSite", + "Rank": 2, "Id": 1535, - "CommandName": "Set-PnPTermGroup" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "Rank": 1, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "CommandName": "Set-PnPTenantSite", + "Rank": 3, "Id": 1536, - "CommandName": "Set-PnPTermSet" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Rank": 2, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "CommandName": "Set-PnPTenantSite", + "Rank": 4, "Id": 1537, - "CommandName": "Set-PnPTermSet" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Rank": 3, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "CommandName": "Set-PnPTenantSite", + "Rank": 5, "Id": 1538, - "CommandName": "Set-PnPTermSet" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { + "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, - "Command": "Set-PnPTheme", "Id": 1539, - "CommandName": "Set-PnPTheme" + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { + "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Id": 1540, - "CommandName": "Set-PnPTheme" + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "Rank": 3, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "CommandName": "Set-PnPTerm", + "Rank": 1, "Id": 1541, - "CommandName": "Set-PnPTheme" + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "Rank": 4, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "CommandName": "Set-PnPTerm", + "Rank": 2, "Id": 1542, - "CommandName": "Set-PnPTheme" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Rank": 1, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "CommandName": "Set-PnPTerm", + "Rank": 3, "Id": 1543, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Rank": 2, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "CommandName": "Set-PnPTerm", + "Rank": 4, "Id": 1544, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "Rank": 3, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "CommandName": "Set-PnPTermGroup", + "Rank": 1, "Id": 1545, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "Rank": 4, - "Command": "Set-PnPTraceLog -Off", + "CommandName": "Set-PnPTermSet", + "Rank": 1, "Id": 1546, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "Rank": 1, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "CommandName": "Set-PnPTermSet", + "Rank": 2, "Id": 1547, - "CommandName": "Set-PnPUserOneDriveQuota" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "Rank": 1, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "CommandName": "Set-PnPTermSet", + "Rank": 3, "Id": 1548, - "CommandName": "Set-PnPUserProfileProperty" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "Rank": 2, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "CommandName": "Set-PnPTheme", + "Rank": 1, "Id": 1549, - "CommandName": "Set-PnPUserProfileProperty" + "Command": "Set-PnPTheme" }, { - "Rank": 1, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "CommandName": "Set-PnPTheme", + "Rank": 2, "Id": 1550, - "CommandName": "Set-PnPView" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "Rank": 2, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "CommandName": "Set-PnPTheme", + "Rank": 3, "Id": 1551, - "CommandName": "Set-PnPView" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "Rank": 3, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", + "CommandName": "Set-PnPTheme", + "Rank": 4, "Id": 1552, - "CommandName": "Set-PnPView" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "Rank": 4, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "CommandName": "Set-PnPTraceLog", + "Rank": 1, "Id": 1553, - "CommandName": "Set-PnPView" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "Rank": 1, - "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", + "CommandName": "Set-PnPTraceLog", + "Rank": 2, "Id": 1554, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "Rank": 2, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "CommandName": "Set-PnPTraceLog", + "Rank": 3, "Id": 1555, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "Rank": 3, - "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", + "CommandName": "Set-PnPTraceLog", + "Rank": 4, "Id": 1556, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Command": "Set-PnPTraceLog -Off" }, { - "Rank": 4, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "CommandName": "Set-PnPUserOneDriveQuota", + "Rank": 1, "Id": 1557, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { + "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Id": 1558, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { + "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Id": 1559, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "Rank": 3, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "CommandName": "Set-PnPView", + "Rank": 1, "Id": 1560, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "Rank": 4, - "Command": "Set-PnPWeb -NoCrawl:$true", + "CommandName": "Set-PnPView", + "Rank": 2, "Id": 1561, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "Rank": 1, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "CommandName": "Set-PnPView", + "Rank": 3, "Id": 1562, - "CommandName": "Set-PnPWebHeader" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"" }, { - "Rank": 2, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "CommandName": "Set-PnPView", + "Rank": 4, "Id": 1563, - "CommandName": "Set-PnPWebHeader" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "Rank": 3, - "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 1, "Id": 1564, - "CommandName": "Set-PnPWebHeader" + "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" }, { - "Rank": 1, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 2, "Id": 1565, - "CommandName": "Set-PnPWebhookSubscription" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "Rank": 2, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 3, "Id": 1566, - "CommandName": "Set-PnPWebhookSubscription" + "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" }, { - "Rank": 1, - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 4, "Id": 1567, - "CommandName": "Set-PnPWebPartProperty" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { + "CommandName": "Set-PnPWeb", "Rank": 1, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Id": 1568, - "CommandName": "Set-PnPWebPermission" + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { + "CommandName": "Set-PnPWeb", "Rank": 2, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Id": 1569, - "CommandName": "Set-PnPWebPermission" + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { + "CommandName": "Set-PnPWeb", "Rank": 3, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Id": 1570, - "CommandName": "Set-PnPWebPermission" + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { + "CommandName": "Set-PnPWeb", "Rank": 4, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Id": 1571, - "CommandName": "Set-PnPWebPermission" + "Command": "Set-PnPWeb -NoCrawl:$true" }, { + "CommandName": "Set-PnPWebHeader", "Rank": 1, - "Command": "Set-PnPWebTheme -Theme MyTheme", "Id": 1572, - "CommandName": "Set-PnPWebTheme" + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { + "CommandName": "Set-PnPWebHeader", "Rank": 2, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Id": 1573, - "CommandName": "Set-PnPWebTheme" + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "Rank": 1, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "CommandName": "Set-PnPWebHeader", + "Rank": 3, "Id": 1574, - "CommandName": "Set-PnPWikiPageContent" + "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { + "CommandName": "Set-PnPWebhookSubscription", "Rank": 1, - "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Id": 1575, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { + "CommandName": "Set-PnPWebhookSubscription", "Rank": 2, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Id": 1576, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Rank": 3, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "CommandName": "Set-PnPWebPartProperty", + "Rank": 1, "Id": 1577, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { - "Rank": 4, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "CommandName": "Set-PnPWebPermission", + "Rank": 1, "Id": 1578, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Rank": 5, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "CommandName": "Set-PnPWebPermission", + "Rank": 2, "Id": 1579, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "Rank": 6, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "CommandName": "Set-PnPWebPermission", + "Rank": 3, "Id": 1580, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Rank": 1, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "CommandName": "Set-PnPWebPermission", + "Rank": 4, "Id": 1581, - "CommandName": "Submit-PnPTeamsChannelMessage" + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "Rank": 2, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html", + "CommandName": "Set-PnPWebTheme", + "Rank": 1, "Id": 1582, - "CommandName": "Submit-PnPTeamsChannelMessage" + "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "Rank": 1, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Set-PnPWebTheme", + "Rank": 2, "Id": 1583, - "CommandName": "Sync-PnPAppToTeams" + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { + "CommandName": "Set-PnPWikiPageContent", "Rank": 1, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Id": 1584, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "Rank": 2, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "CommandName": "Submit-PnPSearchQuery", + "Rank": 1, "Id": 1585, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "Rank": 3, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "CommandName": "Submit-PnPSearchQuery", + "Rank": 2, "Id": 1586, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "Rank": 1, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "CommandName": "Submit-PnPSearchQuery", + "Rank": 3, "Id": 1587, - "CommandName": "Test-PnPListItemIsRecord" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "Rank": 1, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "CommandName": "Submit-PnPSearchQuery", + "Rank": 4, "Id": 1588, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "Rank": 1, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Submit-PnPSearchQuery", + "Rank": 5, "Id": 1589, - "CommandName": "Test-PnPSite" + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "Rank": 2, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Submit-PnPSearchQuery", + "Rank": 6, "Id": 1590, - "CommandName": "Test-PnPSite" + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" }, { + "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, - "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Id": 1591, - "CommandName": "Test-PnPTenantTemplate" + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "Rank": 1, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 2, "Id": 1592, - "CommandName": "Undo-PnPFileCheckedOut" + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html" }, { + "CommandName": "Sync-PnPAppToTeams", "Rank": 1, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1593, - "CommandName": "Uninstall-PnPApp" + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 1, "Id": 1594, - "CommandName": "Uninstall-PnPApp" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "Rank": 1, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 2, "Id": 1595, - "CommandName": "Unpublish-PnPApp" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "Rank": 2, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 3, "Id": 1596, - "CommandName": "Unpublish-PnPApp" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { + "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, - "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Id": 1597, - "CommandName": "Unpublish-PnPContentType" + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 1598, - "CommandName": "Unpublish-PnPSyntexModel" + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "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", + "CommandName": "Test-PnPSite", + "Rank": 1, "Id": 1599, - "CommandName": "Unpublish-PnPSyntexModel" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Rank": 1, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Test-PnPSite", + "Rank": 2, "Id": 1600, - "CommandName": "Unregister-PnPHubSite" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { + "CommandName": "Test-PnPTenantTemplate", "Rank": 1, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1601, - "CommandName": "Update-PnPApp" + "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "Rank": 2, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Undo-PnPFileCheckedOut", + "Rank": 1, "Id": 1602, - "CommandName": "Update-PnPApp" + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { + "CommandName": "Uninstall-PnPApp", "Rank": 1, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Id": 1603, - "CommandName": "Update-PnPAvailableSiteClassification" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { + "CommandName": "Uninstall-PnPApp", "Rank": 2, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Id": 1604, - "CommandName": "Update-PnPAvailableSiteClassification" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 3, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Unpublish-PnPApp", + "Rank": 1, "Id": 1605, - "CommandName": "Update-PnPAvailableSiteClassification" + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 1, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "CommandName": "Unpublish-PnPApp", + "Rank": 2, "Id": 1606, - "CommandName": "Update-PnPSiteDesignFromWeb" + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 2, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "CommandName": "Unpublish-PnPContentType", + "Rank": 1, "Id": 1607, - "CommandName": "Update-PnPSiteDesignFromWeb" + "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "Rank": 3, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 1, "Id": 1608, - "CommandName": "Update-PnPSiteDesignFromWeb" + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Rank": 1, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 2, "Id": 1609, - "CommandName": "Update-PnPTeamsApp" + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { + "CommandName": "Unregister-PnPHubSite", "Rank": 1, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 1610, - "CommandName": "Update-PnPTeamsUser" + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 2, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Update-PnPApp", + "Rank": 1, "Id": 1611, - "CommandName": "Update-PnPTeamsUser" + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 3, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "CommandName": "Update-PnPApp", + "Rank": 2, "Id": 1612, - "CommandName": "Update-PnPTeamsUser" + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { + "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Id": 1613, - "CommandName": "Update-PnPUserType" + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + }, + { + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 2, + "Id": 1614, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" + }, + { + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 3, + "Id": 1615, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" + }, + { + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 1, + "Id": 1616, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" + }, + { + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 2, + "Id": 1617, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + }, + { + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 3, + "Id": 1618, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" + }, + { + "CommandName": "Update-PnPTeamsApp", + "Rank": 1, + "Id": 1619, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" + }, + { + "CommandName": "Update-PnPTeamsUser", + "Rank": 1, + "Id": 1620, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + }, + { + "CommandName": "Update-PnPTeamsUser", + "Rank": 2, + "Id": 1621, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + }, + { + "CommandName": "Update-PnPTeamsUser", + "Rank": 3, + "Id": 1622, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" + }, + { + "CommandName": "Update-PnPUserType", + "Rank": 1, + "Id": 1623, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } ] diff --git a/version.txt b/version.txt index 9f8a1f240..e2ae09b83 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.30 \ No newline at end of file +2.3.31 \ No newline at end of file From f36f7fa80e73f0af2aad8b9ae9c602acde52b811 Mon Sep 17 00:00:00 2001 From: Reshmee Auckloo <reshmee011@gmail.com> Date: Sat, 20 Jan 2024 09:39:05 +0000 Subject: [PATCH 30/53] Cmdlet remove-pnpcontainertype and minor changes. closes #3670. (#3689) * cmdlets remove-pnpcontainertype and minor changes * cmdlets remove-pnpcontainertype and minor changes --------- Co-authored-by: Gautam Sheth <gautamdsheth@outlook.com> --- documentation/Remove-PnPContainer.md | 2 +- documentation/Remove-PnPContainerType.md | 73 +++++++++++++++++++++++ src/Commands/Admin/GetContainer.cs | 4 +- src/Commands/Admin/GetDeletedContainer.cs | 1 - src/Commands/Admin/RemoveContainer.cs | 2 +- src/Commands/Admin/RemoveContainerType.cs | 24 ++++++++ 6 files changed, 101 insertions(+), 5 deletions(-) create mode 100644 documentation/Remove-PnPContainerType.md create mode 100644 src/Commands/Admin/RemoveContainerType.cs diff --git a/documentation/Remove-PnPContainer.md b/documentation/Remove-PnPContainer.md index 9d474d874..c85df9e37 100644 --- a/documentation/Remove-PnPContainer.md +++ b/documentation/Remove-PnPContainer.md @@ -70,7 +70,7 @@ Specify container site url or container id. Type: ContainerPipeBind Parameter Sets: (All) -Required: Falsegit +Required: true Position: 0 Default value: None Accept pipeline input: True (ByValue) diff --git a/documentation/Remove-PnPContainerType.md b/documentation/Remove-PnPContainerType.md new file mode 100644 index 000000000..f173357dc --- /dev/null +++ b/documentation/Remove-PnPContainerType.md @@ -0,0 +1,73 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Remove-PnPContainerType.html +external help file: PnP.PowerShell.dll-Help.xml +title: Remove-PnPContainerType +--- + +# Remove-PnPContainerType + +## SYNOPSIS + +**Required Permissions** + +* SharePoint: Access to the SharePoint Tenant Administration site + +The Remove-PnPContainerType cmdlet removes a trial container from the SharePoint tenant. The container to remove is specified by the Identity parameter. + + +## SYNTAX + +```powershell +Remove-PnPContainerType [-Identity] <Guid> [-Connection <PnPConnection>] +``` + +## DESCRIPTION + +## EXAMPLES + +### EXAMPLE 1 + +```powershell +Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6 +``` + +Removes the specified trial container by using the container id. + +## 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 +``` + +### -Identity + +Specify the container id. + +```yaml +Type: Guid +Parameter Sets: (All) + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +## RELATED LINKS + +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) \ No newline at end of file diff --git a/src/Commands/Admin/GetContainer.cs b/src/Commands/Admin/GetContainer.cs index e6a79ef01..7128bdf9e 100644 --- a/src/Commands/Admin/GetContainer.cs +++ b/src/Commands/Admin/GetContainer.cs @@ -12,10 +12,10 @@ namespace PnP.PowerShell.Commands.Admin public class GetContainer : PnPAdminCmdlet { [Parameter(Mandatory = false, Position = 0, ValueFromPipeline = true)] - public Guid OwningApplicationId; + public ContainerPipeBind Identity { get; set; } [Parameter(Mandatory = false)] - public ContainerPipeBind Identity { get; set; } + public Guid OwningApplicationId; [Parameter(Mandatory = false)] public SwitchParameter Paged { get; set; } diff --git a/src/Commands/Admin/GetDeletedContainer.cs b/src/Commands/Admin/GetDeletedContainer.cs index b1596856e..012f09d7d 100644 --- a/src/Commands/Admin/GetDeletedContainer.cs +++ b/src/Commands/Admin/GetDeletedContainer.cs @@ -14,7 +14,6 @@ public class PnPDeletedContainer : PnPAdminCmdlet { protected override void ExecuteCmdlet() { - IList<SPDeletedContainerProperties> deletedContainers = Tenant.GetSPODeletedContainers(); AdminContext.ExecuteQueryRetry(); WriteObject(deletedContainers, true); diff --git a/src/Commands/Admin/RemoveContainer.cs b/src/Commands/Admin/RemoveContainer.cs index 1a9fb5e52..ebd8f35ea 100644 --- a/src/Commands/Admin/RemoveContainer.cs +++ b/src/Commands/Admin/RemoveContainer.cs @@ -9,7 +9,7 @@ namespace PnP.PowerShell.Commands.Admin [Cmdlet(VerbsCommon.Remove, "PnPContainer")] public class RemoveContainer : PnPAdminCmdlet { - [Parameter(Mandatory = true)] + [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] public ContainerPipeBind Identity { get; set; } protected override void ExecuteCmdlet() diff --git a/src/Commands/Admin/RemoveContainerType.cs b/src/Commands/Admin/RemoveContainerType.cs new file mode 100644 index 000000000..a85f9f7cf --- /dev/null +++ b/src/Commands/Admin/RemoveContainerType.cs @@ -0,0 +1,24 @@ +using Microsoft.Online.SharePoint.TenantAdministration; +using Microsoft.SharePoint.Client; +using PnP.PowerShell.Commands.Base; +using System.Management.Automation; +using PnP.PowerShell.Commands.Base.PipeBinds; +using System; + +namespace PnP.PowerShell.Commands.Admin +{ + [Cmdlet(VerbsCommon.Remove, "PnPContainerType")] + public class RemoveContainerType : PnPAdminCmdlet + { + [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] + public Guid Identity { get; set; } + + protected override void ExecuteCmdlet() + { + SPDeletedContainerTypeProperties sPDeletedContainerTypeProperties = new SPDeletedContainerTypeProperties(); + sPDeletedContainerTypeProperties.ContainerTypeId = Identity; + Tenant.RemoveSPOContainerType(sPDeletedContainerTypeProperties); + AdminContext.ExecuteQueryRetry(); + } + } +} \ No newline at end of file From 99c22c71dfe254092a7f515908c158404925edb4 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 11:41:11 +0200 Subject: [PATCH 31/53] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bab8ca216..992050041 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Add-PnPSiteAnalyticsData` cmdlet to allow retrieval of site analytics data. [#3645](https://github.com/pnp/powershell/pull/3645) - Added `Get-PnPPowerPlatformSolution` cmdlet to Power Platform solutions. [#3675](https://github.com/pnp/powershell/pull/3675) - Added `New-PnPContainerType` cmdlet to create a new SharePoint container type. [#3669](https://github.com/pnp/powershell/pull/3669) +- Added `Remove-PnPContainerType` cmdlet which removes a specific container type. [#3689](https://github.com/pnp/powershell/pull/3689/) ### Fixed From 12b923c8b43446ec0d04084548c2ab563d171dd9 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 17:51:50 +0200 Subject: [PATCH 32/53] Update PnP.PowerShell.Tests.csproj --- src/Tests/PnP.PowerShell.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tests/PnP.PowerShell.Tests.csproj b/src/Tests/PnP.PowerShell.Tests.csproj index 6b4ba1813..a35882600 100644 --- a/src/Tests/PnP.PowerShell.Tests.csproj +++ b/src/Tests/PnP.PowerShell.Tests.csproj @@ -24,7 +24,7 @@ <PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> <PackageReference Include="PnP.Framework" Version="1.14.*-*" Condition="'$(LocalDebug)' != 'true'" /> <PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.1" /> - <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.27.0" /> + <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.35.0" /> <PackageReference Include="System.Reflection.Emit" Version="4.7.0" /> <PackageReference Include="System.Runtime.Loader" Version="4.3.0" /> <PackageReference Include="System.Security.Cryptography.ProtectedData" Version="6.0.0" /> From b31904d5770dc1b0c22b9058158cb3f0f27c1f67 Mon Sep 17 00:00:00 2001 From: Reshmee Auckloo <reshmee011@gmail.com> Date: Sat, 20 Jan 2024 16:06:27 +0000 Subject: [PATCH 33/53] cmdlet for Restore-PnPDeletedcontainer. Closes #3623. (#3661) * Nightly publish to PowerShell Gallery * new cmdlet for remove-pnpcontainer * Update RestoreDeletedContainer.cs * Update version.txt * Update version.txt * Update version.txt * Update pnpframework_hash.txt * Update Restore-PnPDeletedContainer.md * Update Get-PnPDeletedContainer.md --------- Co-authored-by: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Co-authored-by: Gautam Sheth <gautamdsheth@outlook.com> --- documentation/Get-PnPDeletedContainer.md | 4 +- documentation/Restore-PnPDeletedContainer.md | 72 +++++++++++++++++++ src/Commands/Admin/RestoreDeletedContainer.cs | 30 ++++++++ 3 files changed, 104 insertions(+), 2 deletions(-) create mode 100644 documentation/Restore-PnPDeletedContainer.md create mode 100644 src/Commands/Admin/RestoreDeletedContainer.cs diff --git a/documentation/Get-PnPDeletedContainer.md b/documentation/Get-PnPDeletedContainer.md index 1a62e0b5e..55043bafb 100644 --- a/documentation/Get-PnPDeletedContainer.md +++ b/documentation/Get-PnPDeletedContainer.md @@ -15,7 +15,7 @@ title: Get-PnPDeletedContainer * SharePoint: Access to the SharePoint Tenant Administration site -The Get-SPODeletedContainer cmdlet returns a list of all deleted Containers in the Recycle Bin. There is no Identity parameter needed. The list includes the ContainerId, ContainerName, DeletedOn, and CreatedDate. Deleted Containers in the Recycle Bin are permanently deleted after 93 days. +The Get-PnPDeletedContainer cmdlet returns a list of all deleted Containers in the Recycle Bin. There is no Identity parameter needed. The list includes the ContainerId, ContainerName, DeletedOn, and CreatedDate. Deleted Containers in the Recycle Bin are permanently deleted after 93 days. Use cmdlet Restore-PnPDeletedContainer to restore a deleted container. ## SYNTAX @@ -54,4 +54,4 @@ Accept wildcard characters: False ## RELATED LINKS -[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) \ No newline at end of file +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) diff --git a/documentation/Restore-PnPDeletedContainer.md b/documentation/Restore-PnPDeletedContainer.md new file mode 100644 index 000000000..0d59a1e53 --- /dev/null +++ b/documentation/Restore-PnPDeletedContainer.md @@ -0,0 +1,72 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Restore-PnPDeletedContainer.html +external help file: PnP.PowerShell.dll-Help.xml +title: Restore-PnPDeletedContainer +--- + +# Restore-PnPDeletedContainer + +## SYNOPSIS + +**Required Permissions** + +* SharePoint: Access to the SharePoint Tenant Administration site + +The Restore-PnPDeletedContainer recovers a deleted Container from the Recycle Bin. + +## SYNTAX + +```powershell +Restore-PnPDeletedContainer -Identity <string> [-Connection <PnPConnection>] +``` + +## DESCRIPTION + +## EXAMPLES + +### EXAMPLE 1 + +```powershell +Restore-PnPDeletedContainer -Identity "b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1" +``` + +Restores the Container with ContainerId "b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1" from the Recycle Bin. + +## PARAMETERS + +### -Identity + +The ContainerId of the deleted container to be restored. + +```yaml +Type: String +Parameter Sets: (All) + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 Restore-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) diff --git a/src/Commands/Admin/RestoreDeletedContainer.cs b/src/Commands/Admin/RestoreDeletedContainer.cs new file mode 100644 index 000000000..8ad6c40a4 --- /dev/null +++ b/src/Commands/Admin/RestoreDeletedContainer.cs @@ -0,0 +1,30 @@ +using Microsoft.Online.SharePoint.TenantAdministration; +using Microsoft.SharePoint.Client; +using PnP.PowerShell.Commands.Base; +using PnP.PowerShell.Commands.Base.PipeBinds; +using System; +using System.Management.Automation; + +namespace PnP.PowerShell.Commands.Admin +{ + [Cmdlet(VerbsData.Restore, "PnPDeletedContainer")] + public class RestoreDeletedContainer : PnPAdminCmdlet + { + [Parameter(Mandatory = true, Position = 0)] + public string Identity { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter Force; + + protected override void ExecuteCmdlet() + { + if (Force || ShouldContinue($"Restore container {Identity}?", Properties.Resources.Confirm)) + { + WriteVerbose($"Restoring container {Identity}"); + Tenant.RestoreSPODeletedContainerByContainerId(Identity); + AdminContext.ExecuteQueryRetry(); + WriteVerbose($"Restored container {Identity}"); + } + } + } +} From f174c4e93400737088ab6dc20a12eb9f1068dfad Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 18:07:56 +0200 Subject: [PATCH 34/53] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 992050041..ad17fc0f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Get-PnPPowerPlatformSolution` cmdlet to Power Platform solutions. [#3675](https://github.com/pnp/powershell/pull/3675) - Added `New-PnPContainerType` cmdlet to create a new SharePoint container type. [#3669](https://github.com/pnp/powershell/pull/3669) - Added `Remove-PnPContainerType` cmdlet which removes a specific container type. [#3689](https://github.com/pnp/powershell/pull/3689/) +- Added `Restore-PnPDeletedContainer` cmdlet which recovers a deleted Container from the Recycle Bin. [#3661](https://github.com/pnp/powershell/pull/3661) ### Fixed From 7883561d29a0812892ada737b0a62bec6314609b Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 18:23:12 +0200 Subject: [PATCH 35/53] Bump action versions --- .github/workflows/builddocsite.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/builddocsite.yml b/.github/workflows/builddocsite.yml index 09e78d7fb..e59068bbd 100644 --- a/.github/workflows/builddocsite.yml +++ b/.github/workflows/builddocsite.yml @@ -13,22 +13,22 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Checkout master branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: master path: master - name: Checkout dev branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: dev path: dev - name: Checkout gh-pages branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: gh-pages path: gh-pages - name: Setup .NET 7.0 - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 7.x From 879bae47237eed9fbcabc81ffe1bcaca7306dcab Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 18:23:34 +0200 Subject: [PATCH 36/53] Bump checkout action version --- .github/workflows/buildexternalhelp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildexternalhelp.yml b/.github/workflows/buildexternalhelp.yml index f38594210..3037db7d9 100644 --- a/.github/workflows/buildexternalhelp.yml +++ b/.github/workflows/buildexternalhelp.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Building Help File env: RUNSINACTION: 1 From 36862a4be037dea6e0683ba685e18dc34be58f0f Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 18:24:44 +0200 Subject: [PATCH 37/53] Bump action versions --- .github/workflows/buildpr.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/buildpr.yml b/.github/workflows/buildpr.yml index 0166a1b39..1b8d3ef2d 100644 --- a/.github/workflows/buildpr.yml +++ b/.github/workflows/buildpr.yml @@ -17,23 +17,23 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout PnP.Framework - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: pnp/pnpframework path: pnpframework ref: 'dev' - name: Checkout PnP.Core - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: pnp/pnpcore path: pnpcore ref: 'dev' - name: Checkout PnP.PowerShell - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: powershell - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: | 6.0.x From e7070ac2802c640e39802fcbbe8a98838266bcc1 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 18:25:02 +0200 Subject: [PATCH 38/53] Update checkdocumentationbuild.yml --- .github/workflows/checkdocumentationbuild.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checkdocumentationbuild.yml b/.github/workflows/checkdocumentationbuild.yml index 66ef3a76b..715732106 100644 --- a/.github/workflows/checkdocumentationbuild.yml +++ b/.github/workflows/checkdocumentationbuild.yml @@ -12,20 +12,20 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: master path: master - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: dev path: dev - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: gh-pages path: gh-pages - name: Setup .NET 7.0 - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 7.x From 1dc0c895682ee015bd1a0f9492d4785d2fbfad33 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 18:25:21 +0200 Subject: [PATCH 39/53] Update cleanupnightlyreleases.yml --- .github/workflows/cleanupnightlyreleases.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cleanupnightlyreleases.yml b/.github/workflows/cleanupnightlyreleases.yml index 47314bbbf..b5e820457 100644 --- a/.github/workflows/cleanupnightlyreleases.yml +++ b/.github/workflows/cleanupnightlyreleases.yml @@ -14,11 +14,11 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: dev - name: Setup .NET 6.0 - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: '6.0.x' - name: Unlist nightly nuget packages From 7cede3f94ecba8f80f23c3ecdd77ae285917b2e7 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 18:25:46 +0200 Subject: [PATCH 40/53] Update nightlyrelease.yml --- .github/workflows/nightlyrelease.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nightlyrelease.yml b/.github/workflows/nightlyrelease.yml index bd0a763b5..ea5d203aa 100644 --- a/.github/workflows/nightlyrelease.yml +++ b/.github/workflows/nightlyrelease.yml @@ -11,12 +11,12 @@ jobs: steps: - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: | 6.x 7.x - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: dev token: ${{ secrets.PAT }} @@ -41,7 +41,7 @@ jobs: runs-on: windows-2022 needs: [ build ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build an image run: | $VERSION="$(cat ./version.txt)-nightly" @@ -55,7 +55,7 @@ jobs: runs-on: windows-2019 needs: [ build ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build an image run: | $VERSION="$(cat ./version.txt)-nightly" @@ -69,7 +69,7 @@ jobs: runs-on: ubuntu-latest needs: [ build ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build an image run: | VERSION=$(cat ./version.txt)-nightly From e746cc5d5d815147fcd5f6344f26a5b8aa3b6bdd Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 18:25:59 +0200 Subject: [PATCH 41/53] Update release.yml --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fcaba5ea6..559f5a4b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: publish-docker-windows-2022: runs-on: windows-2022 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build and Publish All shell: pwsh run: | @@ -17,7 +17,7 @@ jobs: publish-docker-windows-2019: runs-on: windows-2019 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build and Publish All shell: pwsh run: | @@ -26,7 +26,7 @@ jobs: publish-docker-linux: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build and Publish All shell: pwsh run: | From ed23a4b1c9e5bc3349df1e6c710a8b625a1d042a Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Sat, 20 Jan 2024 20:47:40 +0200 Subject: [PATCH 42/53] Added missing retry --- src/Commands/Admin/GetContainerTypeConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Admin/GetContainerTypeConfiguration.cs b/src/Commands/Admin/GetContainerTypeConfiguration.cs index 679196cfd..8f10df1e3 100644 --- a/src/Commands/Admin/GetContainerTypeConfiguration.cs +++ b/src/Commands/Admin/GetContainerTypeConfiguration.cs @@ -19,7 +19,7 @@ protected override void ExecuteCmdlet() throw new ArgumentException($"Identity {Identity} value is invalid"); } ClientResult<SPContainerTypeConfigurationProperties> sPOContainerTypeConfigurationByContainerTypeId = Tenant.GetSPOContainerTypeConfigurationByContainerTypeId(Identity); - AdminContext.ExecuteQuery(); + AdminContext.ExecuteQueryRetry(); if (sPOContainerTypeConfigurationByContainerTypeId != null && sPOContainerTypeConfigurationByContainerTypeId.Value != null) { WriteObject(new Model.SharePoint.SPContainerTypeConfigurationPropertiesObj(sPOContainerTypeConfigurationByContainerTypeId.Value)); From 34cb2481e37ec344b5ea183f51f22a97b873ad91 Mon Sep 17 00:00:00 2001 From: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Date: Sun, 21 Jan 2024 02:47:14 +0000 Subject: [PATCH 43/53] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6504 +++++++++-------- version.txt | 2 +- 3 files changed, 3260 insertions(+), 3248 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 38eb1c95f..ab5956237 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -65c7879482b4b5de204d6c6ecdd77be2bb37cd77 \ No newline at end of file +3c636fe8e6e27a52c87ba916bf7d00862ebce594 \ 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 b022b4974..511bff1e4 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -2,9739 +2,9751 @@ { "CommandName": "Add-PnPAlert", "Rank": 1, - "Id": 1, - "Command": "Add-PnPAlert -List \"Demo List\"" + "Command": "Add-PnPAlert -List \"Demo List\"", + "Id": 1 }, { "CommandName": "Add-PnPAlert", "Rank": 2, - "Id": 2, - "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 \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", + "Id": 2 }, { "CommandName": "Add-PnPAlert", "Rank": 3, - "Id": 3, - "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\"", + "Id": 3 }, { "CommandName": "Add-PnPAlert", "Rank": 4, - "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))" + "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-PnPApp", "Rank": 1, - "Id": 5, - "Command": "Add-PnPApp -Path ./myapp.sppkg" + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Id": 5 }, { "CommandName": "Add-PnPApp", "Rank": 2, - "Id": 6, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Id": 6 }, { "CommandName": "Add-PnPApp", "Rank": 3, - "Id": 7, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Id": 7 }, { "CommandName": "Add-PnPApp", "Rank": 4, - "Id": 8, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Id": 8 }, { "CommandName": "Add-PnPApplicationCustomizer", "Rank": 1, - "Id": 9, - "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}" + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", + "Id": 9 }, { "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1, - "Id": 10, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Id": 10 }, { "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, - "Id": 11, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Id": 11 }, { "CommandName": "Add-PnPAzureADGroupMember", "Rank": 1, - "Id": 12, - "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\"", + "Id": 12 }, { "CommandName": "Add-PnPAzureADGroupMember", "Rank": 2, - "Id": 13, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 13 }, { "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3, - "Id": 14, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 14 }, { "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 1, - "Id": 15, - "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\"", + "Id": 15 }, { "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 2, - "Id": 16, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 16 }, { "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3, - "Id": 17, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 17 }, { "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 1, - "Id": 18, - "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 \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "Id": 18 }, { "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 2, - "Id": 19, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "Id": 19 }, { "CommandName": "Add-PnPContentType", "Rank": 1, - "Id": 20, - "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 $ct", + "Id": 20 }, { "CommandName": "Add-PnPContentType", "Rank": 2, - "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\"" + "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": 3, - "Id": 22, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "Id": 22 }, { "CommandName": "Add-PnPContentType", "Rank": 4, - "Id": 23, - "Command": "Add-PnPContentType -Name \"Project Item\"" + "Command": "Add-PnPContentType -Name \"Project Item\"", + "Id": 23 }, { "CommandName": "Add-PnPContentType", "Rank": 5, - "Id": 24, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "Id": 24 }, { "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, - "Id": 25, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Id": 25 }, { "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2, - "Id": 26, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Id": 26 }, { "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1, - "Id": 27, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 27 }, { "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, - "Id": 28, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 28 }, { "CommandName": "Add-PnPContentTypeToList", "Rank": 1, - "Id": 29, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Id": 29 }, { "CommandName": "Add-PnPCustomAction", "Rank": 1, - "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`\"}\"" + "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-PnPDataRowsToSiteTemplate", "Rank": 1, - "Id": 31, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Id": 31 }, { "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, - "Id": 32, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity", + "Id": 32 }, { "CommandName": "Add-PnPDocumentSet", "Rank": 1, - "Id": 33, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Id": 33 }, { "CommandName": "Add-PnPEventReceiver", "Rank": 1, - "Id": 34, - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "Id": 34 }, { "CommandName": "Add-PnPEventReceiver", "Rank": 2, - "Id": 35, - "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 WebAdding -Synchronization Synchronous", + "Id": 35 }, { "CommandName": "Add-PnPEventReceiver", "Rank": 3, - "Id": 36, - "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 ListAdding -Synchronization Synchronous -Scope Site", + "Id": 36 }, { "CommandName": "Add-PnPEventReceiver", "Rank": 4, - "Id": 37, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "Id": 37 }, { "CommandName": "Add-PnPField", "Rank": 1, - "Id": 38, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Id": 38 }, { "CommandName": "Add-PnPField", "Rank": 2, - "Id": 39, - "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 \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", + "Id": 39 }, { "CommandName": "Add-PnPField", "Rank": 3, - "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\"" + "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": 4, - "Id": 41, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Id": 41 }, { "CommandName": "Add-PnPField", "Rank": 5, - "Id": 42, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", + "Id": 42 }, { "CommandName": "Add-PnPField", "Rank": 6, - "Id": 43, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "Id": 43 }, { "CommandName": "Add-PnPFieldToContentType", "Rank": 1, - "Id": 44, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 44 }, { "CommandName": "Add-PnPFile", "Rank": 1, - "Id": 45, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Id": 45 }, { "CommandName": "Add-PnPFile", "Rank": 2, - "Id": 46, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Id": 46 }, { "CommandName": "Add-PnPFile", "Rank": 3, - "Id": 47, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}" + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", + "Id": 47 }, { "CommandName": "Add-PnPFile", "Rank": 4, - "Id": 48, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}" + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", + "Id": 48 }, { "CommandName": "Add-PnPFile", "Rank": 5, - "Id": 49, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}" + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", + "Id": 49 }, { "CommandName": "Add-PnPFile", "Rank": 6, - "Id": 50, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", + "Id": 50 }, { "CommandName": "Add-PnPFile", "Rank": 7, - "Id": 51, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Id": 51 }, { "CommandName": "Add-PnPFile", "Rank": 8, - "Id": 52, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Id": 52 }, { "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 1, - "Id": 53, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 53 }, { "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 2, - "Id": 54, - "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 Edit -Password \"PnPRocks!\"", + "Id": 54 }, { "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 3, - "Id": 55, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "Id": 55 }, { "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 1, - "Id": 56, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 56 }, { "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2, - "Id": 57, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Id": 57 }, { "CommandName": "Add-PnPFileSharingInvite", "Rank": 1, - "Id": 58, - "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", + "Id": 58 }, { "CommandName": "Add-PnPFileSharingInvite", "Rank": 2, - "Id": 59, - "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 -SendInvitation -Role Owner", + "Id": 59 }, { "CommandName": "Add-PnPFileSharingInvite", "Rank": 3, - "Id": 60, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" + "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-PnPFileToSiteTemplate", "Rank": 1, - "Id": 61, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Id": 61 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 2, - "Id": 62, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", + "Id": 62 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 3, - "Id": 63, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "Id": 63 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4, - "Id": 64, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "Id": 64 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5, - "Id": 65, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Id": 65 }, { "CommandName": "Add-PnPFileUserSharingLink", "Rank": 1, - "Id": 66, - "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\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 66 }, { "CommandName": "Add-PnPFileUserSharingLink", "Rank": 2, - "Id": 67, - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -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-PnPFlowOwner", "Rank": 1, - "Id": 68, - "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 username@tenant.onmicrosoft.com -Role CanEdit", + "Id": 68 }, { "CommandName": "Add-PnPFlowOwner", "Rank": 2, - "Id": 69, - "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 CanView", + "Id": 69 }, { "CommandName": "Add-PnPFlowOwner", "Rank": 3, - "Id": 70, - "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 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare", + "Id": 70 }, { "CommandName": "Add-PnPFlowOwner", "Rank": 4, - "Id": 71, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit" + "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-PnPFolder", "Rank": 1, - "Id": 72, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 72 }, { "CommandName": "Add-PnPFolder", "Rank": 2, - "Id": 73, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Id": 73 }, { "CommandName": "Add-PnPFolder", "Rank": 3, - "Id": 74, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Id": 74 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 1, - "Id": 75, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 75 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 2, - "Id": 76, - "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!\"", + "Id": 76 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 3, - "Id": 77, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "Id": 77 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 1, - "Id": 78, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 78 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2, - "Id": 79, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Id": 79 }, { "CommandName": "Add-PnPFolderSharingInvite", "Rank": 1, - "Id": 80, - "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", + "Id": 80 }, { "CommandName": "Add-PnPFolderSharingInvite", "Rank": 2, - "Id": 81, - "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 -SendInvitation -Role Owner", + "Id": 81 }, { "CommandName": "Add-PnPFolderSharingInvite", "Rank": 3, - "Id": 82, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", + "Id": 82 }, { "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 1, - "Id": 83, - "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\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 83 }, { "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 2, - "Id": 84, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -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-PnPGroupMember", "Rank": 1, - "Id": 85, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 85 }, { "CommandName": "Add-PnPGroupMember", "Rank": 2, - "Id": 86, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Id": 86 }, { "CommandName": "Add-PnPHtmlPublishingPageLayout", "Rank": 1, - "Id": 87, - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 87 }, { "CommandName": "Add-PnPHubSiteAssociation", "Rank": 1, - "Id": 88, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "Id": 88 }, { "CommandName": "Add-PnPHubToHubAssociation", "Rank": 1, - "Id": 89, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "Id": 89 }, { "CommandName": "Add-PnPHubToHubAssociation", "Rank": 2, - "Id": 90, - "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/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "Id": 90 }, { "CommandName": "Add-PnPHubToHubAssociation", "Rank": 3, - "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\"" + "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-PnPJavaScriptBlock", "Rank": 1, - "Id": 92, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site", + "Id": 92 }, { "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, - "Id": 93, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'", + "Id": 93 }, { "CommandName": "Add-PnPJavaScriptLink", "Rank": 1, - "Id": 94, - "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 -Sequence 9999 -Scope Site", + "Id": 94 }, { "CommandName": "Add-PnPJavaScriptLink", "Rank": 2, - "Id": 95, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Id": 95 }, { "CommandName": "Add-PnPListDesign", "Rank": 1, - "Id": 96, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "Id": 96 }, { "CommandName": "Add-PnPListDesign", "Rank": 2, - "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\"" + "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-PnPListFoldersToSiteTemplate", "Rank": 1, - "Id": 98, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Id": 98 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2, - "Id": 99, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Id": 99 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3, - "Id": 100, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Id": 100 }, { "CommandName": "Add-PnPListItem", "Rank": 1, - "Id": 101, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 101 }, { "CommandName": "Add-PnPListItem", "Rank": 2, - "Id": 102, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -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": 3, - "Id": 103, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "Id": 103 }, { "CommandName": "Add-PnPListItem", "Rank": 4, - "Id": 104, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "Id": 104 }, { "CommandName": "Add-PnPListItem", "Rank": 5, - "Id": 105, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Id": 105 }, { "CommandName": "Add-PnPListItemAttachment", "Rank": 1, - "Id": 106, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "Id": 106 }, { "CommandName": "Add-PnPListItemAttachment", "Rank": 2, - "Id": 107, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "Id": 107 }, { "CommandName": "Add-PnPListItemAttachment", "Rank": 3, - "Id": 108, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Id": 108 }, { "CommandName": "Add-PnPListItemComment", "Rank": 1, - "Id": 109, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Id": 109 }, { "CommandName": "Add-PnPMasterPage", "Rank": 1, - "Id": 110, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Id": 110 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 1, - "Id": 111, - "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\"", + "Id": 111 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 2, - "Id": 112, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 112 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 1, - "Id": 113, - "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\"", + "Id": 113 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 2, - "Id": 114, - "Command": "Add-PnPMicrosoft365GroupOwner -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\" -RemoveExisting", + "Id": 114 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 1, - "Id": 115, - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "Id": 115 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2, - "Id": 116, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Id": 116 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3, - "Id": 117, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Id": 117 }, { "CommandName": "Add-PnPNavigationNode", "Rank": 1, - "Id": 118, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Id": 118 }, { "CommandName": "Add-PnPNavigationNode", "Rank": 2, - "Id": 119, - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "Id": 119 }, { "CommandName": "Add-PnPNavigationNode", "Rank": 3, - "Id": 120, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "Id": 120 }, { "CommandName": "Add-PnPNavigationNode", "Rank": 4, - "Id": 121, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "Id": 121 }, { "CommandName": "Add-PnPNavigationNode", "Rank": 5, - "Id": 122, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Id": 122 }, { "CommandName": "Add-PnPNavigationNode", "Rank": 6, - "Id": 123, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Id": 123 }, { "CommandName": "Add-PnPNavigationNode", "Rank": 7, - "Id": 124, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Id": 124 }, { "CommandName": "Add-PnPNavigationNode", "Rank": 8, - "Id": 125, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "Id": 125 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 1, - "Id": 126, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "Id": 126 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 2, - "Id": 127, - "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\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", + "Id": 127 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3, - "Id": 128, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Id": 128 }, { "CommandName": "Add-PnPOrgNewsSite", "Rank": 1, - "Id": 129, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Id": 129 }, { "CommandName": "Add-PnPPage", "Rank": 1, - "Id": 130, - "Command": "Add-PnPPage -Name \"NewPage\"" + "Command": "Add-PnPPage -Name \"NewPage\"", + "Id": 130 }, { "CommandName": "Add-PnPPage", "Rank": 2, - "Id": 131, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Id": 131 }, { "CommandName": "Add-PnPPage", "Rank": 3, - "Id": 132, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Id": 132 }, { "CommandName": "Add-PnPPage", "Rank": 4, - "Id": 133, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Id": 133 }, { "CommandName": "Add-PnPPage", "Rank": 5, - "Id": 134, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"" + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Id": 134 }, { "CommandName": "Add-PnPPage", "Rank": 6, - "Id": 135, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Id": 135 }, { "CommandName": "Add-PnPPage", "Rank": 7, - "Id": 136, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 136 }, { "CommandName": "Add-PnPPage", "Rank": 8, - "Id": 137, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Id": 137 }, { "CommandName": "Add-PnPPage", "Rank": 9, - "Id": 138, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 138 }, { "CommandName": "Add-PnPPage", "Rank": 10, - "Id": 139, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 139 }, { "CommandName": "Add-PnPPageImageWebPart", "Rank": 1, - "Id": 140, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "Id": 140 }, { "CommandName": "Add-PnPPageImageWebPart", "Rank": 2, - "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\"" + "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-PnPPageSection", "Rank": 1, - "Id": 142, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Id": 142 }, { "CommandName": "Add-PnPPageSection", "Rank": 2, - "Id": 143, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Id": 143 }, { "CommandName": "Add-PnPPageTextPart", "Rank": 1, - "Id": 144, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Id": 144 }, { "CommandName": "Add-PnPPageTextPart", "Rank": 2, - "Id": 145, - "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\"", + "Id": 145 }, { "CommandName": "Add-PnPPageTextPart", "Rank": 3, - "Id": 146, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", + "Id": 146 }, { "CommandName": "Add-PnPPageWebPart", "Rank": 1, - "Id": 147, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Id": 147 }, { "CommandName": "Add-PnPPageWebPart", "Rank": 2, - "Id": 148, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Id": 148 }, { "CommandName": "Add-PnPPageWebPart", "Rank": 3, - "Id": 149, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Id": 149 }, { "CommandName": "Add-PnPPlannerBucket", "Rank": 1, - "Id": 150, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Id": 150 }, { "CommandName": "Add-PnPPlannerBucket", "Rank": 2, - "Id": 151, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Id": 151 }, { "CommandName": "Add-PnPPlannerRoster", "Rank": 1, - "Id": 152, - "Command": "Add-PnPPlannerRoster" + "Command": "Add-PnPPlannerRoster", + "Id": 152 }, { "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1, - "Id": 153, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 153 }, { "CommandName": "Add-PnPPlannerTask", "Rank": 1, - "Id": 154, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 154 }, { "CommandName": "Add-PnPPlannerTask", "Rank": 2, - "Id": 155, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 155 }, { "CommandName": "Add-PnPPlannerTask", "Rank": 3, - "Id": 156, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "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-PnPPublishingImageRendition", "Rank": 1, - "Id": 157, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 157 }, { "CommandName": "Add-PnPPublishingPage", "Rank": 1, - "Id": 158, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "Id": 158 }, { "CommandName": "Add-PnPPublishingPage", "Rank": 2, - "Id": 159, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Id": 159 }, { "CommandName": "Add-PnPPublishingPageLayout", "Rank": 1, - "Id": 160, - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 160 }, { "CommandName": "Add-PnPRoleDefinition", "Rank": 1, - "Id": 161, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Id": 161 }, { "CommandName": "Add-PnPRoleDefinition", "Rank": 2, - "Id": 162, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Id": 162 }, { "CommandName": "Add-PnPRoleDefinition", "Rank": 3, - "Id": 163, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Id": 163 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, - "Id": 164, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 164 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 2, - "Id": 165, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 165 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, - "Id": 166, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Id": 166 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 167, - "Command": "Add-PnPSiteCollectionAppCatalog" + "Command": "Add-PnPSiteCollectionAppCatalog", + "Id": 167 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 2, - "Id": 168, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 168 }, { "CommandName": "Add-PnPSiteDesign", "Rank": 1, - "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" + "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": 2, - "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" + "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": 3, - "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\"" + "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-PnPSiteDesignFromWeb", "Rank": 1, - "Id": 172, - "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", + "Id": 172 }, { "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 2, - "Id": 173, - "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 -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Id": 173 }, { "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 3, - "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" + "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-PnPSiteDesignTask", "Rank": 1, - "Id": 175, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 175 }, { "CommandName": "Add-PnPSiteDesignTask", "Rank": 2, - "Id": 176, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Id": 176 }, { "CommandName": "Add-PnPSiteScript", "Rank": 1, - "Id": 177, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Id": 177 }, { "CommandName": "Add-PnPSiteScriptPackage", "Rank": 1, - "Id": 178, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "Id": 178 }, { "CommandName": "Add-PnPSiteTemplate", "Rank": 1, - "Id": 179, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Id": 179 }, { "CommandName": "Add-PnPStoredCredential", "Rank": 1, - "Id": 180, - "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", + "Id": 180 }, { "CommandName": "Add-PnPStoredCredential", "Rank": 2, - "Id": 181, - "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)", + "Id": 181 }, { "CommandName": "Add-PnPStoredCredential", "Rank": 3, - "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\"" + "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-PnPTaxonomyField", "Rank": 1, - "Id": 183, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Id": 183 }, { "CommandName": "Add-PnPTaxonomyField", "Rank": 2, - "Id": 184, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Id": 184 }, { "CommandName": "Add-PnPTeamsChannel", "Rank": 1, - "Id": 185, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Id": 185 }, { "CommandName": "Add-PnPTeamsChannel", "Rank": 2, - "Id": 186, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Id": 186 }, { "CommandName": "Add-PnPTeamsChannel", "Rank": 3, - "Id": 187, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "Id": 187 }, { "CommandName": "Add-PnPTeamsChannel", "Rank": 4, - "Id": 188, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "Id": 188 }, { "CommandName": "Add-PnpTeamsChannelUser", "Rank": 1, - "Id": 189, - "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner" + "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": 2, - "Id": 190, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "Id": 190 }, { "CommandName": "Add-PnPTeamsTab", "Rank": 1, - "Id": 191, - "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 WebSite -ContentUrl \"https://aka.ms/m365pnp\"", + "Id": 191 }, { "CommandName": "Add-PnPTeamsTab", "Rank": 2, - "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\"" + "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": 3, - "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\"" + "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": 4, - "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" + "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-PnPTeamsTeam", "Rank": 1, - "Id": 195, - "Command": "Add-PnPTeamsTeam" + "Command": "Add-PnPTeamsTeam", + "Id": 195 }, { "CommandName": "Add-PnPTeamsUser", "Rank": 1, - "Id": 196, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 196 }, { "CommandName": "Add-PnPTeamsUser", "Rank": 2, - "Id": 197, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 197 }, { "CommandName": "Add-PnPTeamsUser", "Rank": 3, - "Id": 198, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "Id": 198 }, { "CommandName": "Add-PnPTeamsUser", "Rank": 4, - "Id": 199, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Id": 199 }, { "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1, - "Id": 200, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 200 }, { "CommandName": "Add-PnPTenantSequence", "Rank": 1, - "Id": 201, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Id": 201 }, { "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, - "Id": 202, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Id": 202 }, { "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, - "Id": 203, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Id": 203 }, { "CommandName": "Add-PnPTermToTerm", "Rank": 1, - "Id": 204, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Id": 204 }, { "CommandName": "Add-PnPView", "Rank": 1, - "Id": 205, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "Id": 205 }, { "CommandName": "Add-PnPView", "Rank": 2, - "Id": 206, - "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\" -Paged -RowLimit 100", + "Id": 206 }, { "CommandName": "Add-PnPView", "Rank": 3, - "Id": 207, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", + "Id": 207 }, { "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 1, - "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\"" + "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": 2, - "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\"" + "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": 3, - "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\"" + "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-PnPWebhookSubscription", "Rank": 1, - "Id": 211, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 211 }, { "CommandName": "Add-PnPWebhookSubscription", "Rank": 2, - "Id": 212, - "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\"", + "Id": 212 }, { "CommandName": "Add-PnPWebhookSubscription", "Rank": 3, - "Id": 213, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", + "Id": 213 }, { "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 1, - "Id": 214, - "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\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "Id": 214 }, { "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 2, - "Id": 215, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "Id": 215 }, { "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 1, - "Id": 216, - "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\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "Id": 216 }, { "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 2, - "Id": 217, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "Id": 217 }, { "CommandName": "Add-PnPWikiPage", "Rank": 1, - "Id": 218, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Id": 218 }, { "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, - "Id": 219, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Id": 219 }, { "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, - "Id": 220, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Id": 220 }, { "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, - "Id": 221, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Id": 221 }, { "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2, - "Id": 222, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Id": 222 }, { "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, - "Id": 223, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 223 }, { "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, - "Id": 224, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Id": 224 }, { "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, - "Id": 225, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Id": 225 }, { "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1, - "Id": 226, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 226 }, { "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, - "Id": 227, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Id": 227 }, { "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, - "Id": 228, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Id": 228 }, { "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 229, - "Command": "Clear-PnPTenantAppCatalogUrl" + "Command": "Clear-PnPTenantAppCatalogUrl", + "Id": 229 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 1, - "Id": 230, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 230 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2, - "Id": 231, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 231 }, { "CommandName": "Connect-PnPOnline", "Rank": 1, - "Id": 232, - "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"" + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", + "Id": 232 }, { "CommandName": "Convert-PnPFile", "Rank": 1, - "Id": 233, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", + "Id": 233 }, { "CommandName": "Convert-PnPFile", "Rank": 2, - "Id": 234, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", + "Id": 234 }, { "CommandName": "Convert-PnPFile", "Rank": 3, - "Id": 235, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", + "Id": 235 }, { "CommandName": "Convert-PnPFile", "Rank": 4, - "Id": 236, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", + "Id": 236 }, { "CommandName": "Convert-PnPFile", "Rank": 5, - "Id": 237, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", + "Id": 237 }, { "CommandName": "Convert-PnPFile", "Rank": 6, - "Id": 238, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"" + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", + "Id": 238 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, - "Id": 239, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Id": 239 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, - "Id": 240, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Id": 240 }, { "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, - "Id": 241, - "Command": "Convert-PnPSiteTemplate -Path template.xml" + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Id": 241 }, { "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, - "Id": 242, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Id": 242 }, { "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, - "Id": 243, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Id": 243 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, - "Id": 244, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Id": 244 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, - "Id": 245, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Id": 245 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 1, - "Id": 246, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Id": 246 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 2, - "Id": 247, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Id": 247 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 3, - "Id": 248, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Id": 248 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 4, - "Id": 249, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Id": 249 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 5, - "Id": 250, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 250 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 6, - "Id": 251, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Id": 251 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 7, - "Id": 252, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Id": 252 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 8, - "Id": 253, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite", + "Id": 253 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 9, - "Id": 254, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 254 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 10, - "Id": 255, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Id": 255 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 11, - "Id": 256, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Id": 256 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 12, - "Id": 257, - "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\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 257 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 13, - "Id": 258, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -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": 258 }, { "CommandName": "ConvertTo-PnPPage", "Rank": 14, - "Id": 259, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Id": 259 }, { "CommandName": "Copy-PnPFile", "Rank": 1, - "Id": 260, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 260 }, { "CommandName": "Copy-PnPFile", "Rank": 2, - "Id": 261, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 261 }, { "CommandName": "Copy-PnPFile", "Rank": 3, - "Id": 262, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 262 }, { "CommandName": "Copy-PnPFile", "Rank": 4, - "Id": 263, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 263 }, { "CommandName": "Copy-PnPFile", "Rank": 5, - "Id": 264, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 264 }, { "CommandName": "Copy-PnPFile", "Rank": 6, - "Id": 265, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 265 }, { "CommandName": "Copy-PnPFile", "Rank": 7, - "Id": 266, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 266 }, { "CommandName": "Copy-PnPFile", "Rank": 8, - "Id": 267, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 267 }, { "CommandName": "Copy-PnPFile", "Rank": 9, - "Id": 268, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 268 }, { "CommandName": "Copy-PnPFile", "Rank": 10, - "Id": 269, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 269 }, { "CommandName": "Copy-PnPFolder", "Rank": 1, - "Id": 270, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 270 }, { "CommandName": "Copy-PnPFolder", "Rank": 2, - "Id": 271, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 271 }, { "CommandName": "Copy-PnPFolder", "Rank": 3, - "Id": 272, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 272 }, { "CommandName": "Copy-PnPFolder", "Rank": 4, - "Id": 273, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 273 }, { "CommandName": "Copy-PnPFolder", "Rank": 5, - "Id": 274, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 274 }, { "CommandName": "Copy-PnPFolder", "Rank": 6, - "Id": 275, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 275 }, { "CommandName": "Copy-PnPFolder", "Rank": 7, - "Id": 276, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 276 }, { "CommandName": "Copy-PnPFolder", "Rank": 8, - "Id": 277, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 277 }, { "CommandName": "Copy-PnPFolder", "Rank": 9, - "Id": 278, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 278 }, { "CommandName": "Copy-PnPFolder", "Rank": 10, - "Id": 279, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 279 }, { "CommandName": "Copy-PnPItemProxy", "Rank": 1, - "Id": 280, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Id": 280 }, { "CommandName": "Copy-PnPList", "Rank": 1, - "Id": 281, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Id": 281 }, { "CommandName": "Copy-PnPList", "Rank": 2, - "Id": 282, - "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", + "Id": 282 }, { "CommandName": "Copy-PnPList", "Rank": 3, - "Id": 283, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Id": 283 }, { "CommandName": "Copy-PnPList", "Rank": 4, - "Id": 284, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", + "Id": 284 }, { "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, - "Id": 285, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "Id": 285 }, { "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, - "Id": 286, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "Id": 286 }, { "CommandName": "Copy-PnPTeamsTeam", "Rank": 3, - "Id": 287, - "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 apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Id": 287 }, { "CommandName": "Copy-PnPTeamsTeam", "Rank": 4, - "Id": 288, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -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": 288 }, { "CommandName": "Disable-PnPFeature", "Rank": 1, - "Id": 289, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 289 }, { "CommandName": "Disable-PnPFeature", "Rank": 2, - "Id": 290, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 290 }, { "CommandName": "Disable-PnPFeature", "Rank": 3, - "Id": 291, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 291 }, { "CommandName": "Disable-PnPPageScheduling", "Rank": 1, - "Id": 292, - "Command": "Disable-PnPPageScheduling" + "Command": "Disable-PnPPageScheduling", + "Id": 292 }, { "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "Id": 293, - "Command": "Disable-PnPPowerShellTelemetry" + "Command": "Disable-PnPPowerShellTelemetry", + "Id": 293 }, { "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, - "Id": 294, - "Command": "Disable-PnPPowerShellTelemetry -Force" + "Command": "Disable-PnPPowerShellTelemetry -Force", + "Id": 294 }, { "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Id": 295, - "Command": "Disable-PnPSharingForNonOwnersOfSite" + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 295 }, { "CommandName": "Disable-PnPSiteClassification", "Rank": 1, - "Id": 296, - "Command": "Disable-PnPSiteClassification" + "Command": "Disable-PnPSiteClassification", + "Id": 296 }, { "CommandName": "Disconnect-PnPOnline", "Rank": 1, - "Id": 297, - "Command": "Disconnect-PnPOnline" + "Command": "Disconnect-PnPOnline", + "Id": 297 }, { "CommandName": "Enable-PnPCommSite", "Rank": 1, - "Id": 298, - "Command": "Enable-PnPCommSite" + "Command": "Enable-PnPCommSite", + "Id": 298 }, { "CommandName": "Enable-PnPCommSite", "Rank": 2, - "Id": 299, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Id": 299 }, { "CommandName": "Enable-PnPFeature", "Rank": 1, - "Id": 300, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 300 }, { "CommandName": "Enable-PnPFeature", "Rank": 2, - "Id": 301, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 301 }, { "CommandName": "Enable-PnPFeature", "Rank": 3, - "Id": 302, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 302 }, { "CommandName": "Enable-PnPPageScheduling", "Rank": 1, - "Id": 303, - "Command": "Enable-PnPPageScheduling" + "Command": "Enable-PnPPageScheduling", + "Id": 303 }, { "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "Id": 304, - "Command": "Enable-PnPPowerShellTelemetry" + "Command": "Enable-PnPPowerShellTelemetry", + "Id": 304 }, { "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, - "Id": 305, - "Command": "Enable-PnPPowerShellTelemetry -Force" + "Command": "Enable-PnPPowerShellTelemetry -Force", + "Id": 305 }, { "CommandName": "Enable-PnPSiteClassification", "Rank": 1, - "Id": 306, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Id": 306 }, { "CommandName": "Enable-PnPSiteClassification", "Rank": 2, - "Id": 307, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 307 }, { "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, - "Id": 308, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Id": 308 }, { "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, - "Id": 309, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Id": 309 }, { "CommandName": "Export-PnPPage", "Rank": 1, - "Id": 310, - "Command": "Export-PnPPage -Identity Home.aspx" + "Command": "Export-PnPPage -Identity Home.aspx", + "Id": 310 }, { "CommandName": "Export-PnPPageMapping", "Rank": 1, - "Id": 311, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Id": 311 }, { "CommandName": "Export-PnPPageMapping", "Rank": 2, - "Id": 312, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Id": 312 }, { "CommandName": "Export-PnPPageMapping", "Rank": 3, - "Id": 313, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Id": 313 }, { "CommandName": "Export-PnPTaxonomy", "Rank": 1, - "Id": 314, - "Command": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy", + "Id": 314 }, { "CommandName": "Export-PnPTaxonomy", "Rank": 2, - "Id": 315, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Id": 315 }, { "CommandName": "Export-PnPTaxonomy", "Rank": 3, - "Id": 316, - "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", + "Id": 316 }, { "CommandName": "Export-PnPTaxonomy", "Rank": 4, - "Id": 317, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Id": 317 }, { "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, - "Id": 318, - "Command": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml", + "Id": 318 }, { "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, - "Id": 319, - "Command": "Export-PnPTermGroupToXml -Out output.xml" + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Id": 319 }, { "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, - "Id": 320, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Id": 320 }, { "CommandName": "Export-PnPUserInfo", "Rank": 1, - "Id": 321, - "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\"", + "Id": 321 }, { "CommandName": "Export-PnPUserInfo", "Rank": 2, - "Id": 322, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 322 }, { "CommandName": "Export-PnPUserProfile", "Rank": 1, - "Id": 323, - "Command": "Export-PnPUserProfile -LoginName user@domain.com" + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Id": 323 }, { "CommandName": "Export-PnPUserProfile", "Rank": 2, - "Id": 324, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 324 }, { "CommandName": "Find-PnPFile", "Rank": 1, - "Id": 325, - "Command": "Find-PnPFile -Match *.master" + "Command": "Find-PnPFile -Match *.master", + "Id": 325 }, { "CommandName": "Find-PnPFile", "Rank": 2, - "Id": 326, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Id": 326 }, { "CommandName": "Find-PnPFile", "Rank": 3, - "Id": 327, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Id": 327 }, { "CommandName": "Get-PnPAccessToken", "Rank": 1, - "Id": 328, - "Command": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken", + "Id": 328 }, { "CommandName": "Get-PnPAccessToken", "Rank": 2, - "Id": 329, - "Command": "Get-PnPAccessToken -Decoded" + "Command": "Get-PnPAccessToken -Decoded", + "Id": 329 }, { "CommandName": "Get-PnPAccessToken", "Rank": 3, - "Id": 330, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Id": 330 }, { "CommandName": "Get-PnPAccessToken", "Rank": 4, - "Id": 331, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM" + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Id": 331 }, { "CommandName": "Get-PnPAccessToken", "Rank": 5, - "Id": 332, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Id": 332 }, { "CommandName": "Get-PnPAlert", "Rank": 1, - "Id": 333, - "Command": "Get-PnPAlert" + "Command": "Get-PnPAlert", + "Id": 333 }, { "CommandName": "Get-PnPAlert", "Rank": 2, - "Id": 334, - "Command": "Get-PnPAlert -List \"Demo List\"" + "Command": "Get-PnPAlert -List \"Demo List\"", + "Id": 334 }, { "CommandName": "Get-PnPAlert", "Rank": 3, - "Id": 335, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 335 }, { "CommandName": "Get-PnPAlert", "Rank": 4, - "Id": 336, - "Command": "Get-PnPAlert -Title \"Demo Alert\"" + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Id": 336 }, { "CommandName": "Get-PnPAlert", "Rank": 5, - "Id": 337, - "Command": "Get-PnPAlert -AllUsers" + "Command": "Get-PnPAlert -AllUsers", + "Id": 337 }, { "CommandName": "Get-PnPAlert", "Rank": 6, - "Id": 338, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Id": 338 }, { "CommandName": "Get-PnPApp", "Rank": 1, - "Id": 339, - "Command": "Get-PnPApp" + "Command": "Get-PnPApp", + "Id": 339 }, { "CommandName": "Get-PnPApp", "Rank": 2, - "Id": 340, - "Command": "Get-PnPApp -Scope Site" + "Command": "Get-PnPApp -Scope Site", + "Id": 340 }, { "CommandName": "Get-PnPApp", "Rank": 3, - "Id": 341, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 341 }, { "CommandName": "Get-PnPAppErrors", "Rank": 1, - "Id": 342, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Id": 342 }, { "CommandName": "Get-PnPAppErrors", "Rank": 2, - "Id": 343, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Id": 343 }, { "CommandName": "Get-PnPAppInfo", "Rank": 1, - "Id": 344, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"" + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Id": 344 }, { "CommandName": "Get-PnPAppInfo", "Rank": 2, - "Id": 345, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 345 }, { "CommandName": "Get-PnPAppInfo", "Rank": 3, - "Id": 346, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Id": 346 }, { "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, - "Id": 347, - "Command": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer", + "Id": 347 }, { "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, - "Id": 348, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 348 }, { "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, - "Id": 349, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Id": 349 }, { "CommandName": "Get-PnPAuditing", "Rank": 1, - "Id": 350, - "Command": "Get-PnPAuditing" + "Command": "Get-PnPAuditing", + "Id": 350 }, { "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, - "Id": 351, - "Command": "Get-PnPAuthenticationRealm" + "Command": "Get-PnPAuthenticationRealm", + "Id": 351 }, { "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, - "Id": 352, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Id": 352 }, { "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, - "Id": 353, - "Command": "Get-PnPAvailableLanguage" + "Command": "Get-PnPAvailableLanguage", + "Id": 353 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "Id": 354, - "Command": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel", + "Id": 354 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, - "Id": 355, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Id": 355 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, - "Id": 356, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Id": 356 }, { "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, - "Id": 357, - "Command": "Get-PnPAvailableSiteClassification" + "Command": "Get-PnPAvailableSiteClassification", + "Id": 357 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, - "Id": 358, - "Command": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal", + "Id": 358 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, - "Id": 359, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Id": 359 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, - "Id": 360, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Id": 360 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, - "Id": 361, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Id": 361 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "Id": 362, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 362 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, - "Id": 363, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Id": 363 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, - "Id": 364, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Id": 364 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "Id": 365, - "Command": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn", + "Id": 365 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, - "Id": 366, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Id": 366 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, - "Id": 367, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Id": 367 }, { "CommandName": "Get-PnPAzureADApp", "Rank": 1, - "Id": 368, - "Command": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp", + "Id": 368 }, { "CommandName": "Get-PnPAzureADApp", "Rank": 2, - "Id": 369, - "Command": "Get-PnPAzureADApp -Identity MyApp" + "Command": "Get-PnPAzureADApp -Identity MyApp", + "Id": 369 }, { "CommandName": "Get-PnPAzureADApp", "Rank": 3, - "Id": 370, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 370 }, { "CommandName": "Get-PnPAzureADApp", "Rank": 4, - "Id": 371, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Id": 371 }, { "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, - "Id": 372, - "Command": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission", + "Id": 372 }, { "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, - "Id": 373, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp" + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Id": 373 }, { "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, - "Id": 374, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 374 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 375, - "Command": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission", + "Id": 375 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, - "Id": 376, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Id": 376 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, - "Id": 377, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Id": 377 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, - "Id": 378, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Id": 378 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, - "Id": 379, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Id": 379 }, { "CommandName": "Get-PnPAzureADGroup", "Rank": 1, - "Id": 380, - "Command": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup", + "Id": 380 }, { "CommandName": "Get-PnPAzureADGroup", "Rank": 2, - "Id": 381, - "Command": "Get-PnPAzureADGroup -Identity $groupId" + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Id": 381 }, { "CommandName": "Get-PnPAzureADGroup", "Rank": 3, - "Id": 382, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Id": 382 }, { "CommandName": "Get-PnPAzureADGroup", "Rank": 4, - "Id": 383, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Id": 383 }, { "CommandName": "Get-PnPAzureADGroup", "Rank": 5, - "Id": 384, - "Command": "Get-PnPAzureADGroup -Identity $group" + "Command": "Get-PnPAzureADGroup -Identity $group", + "Id": 384 }, { "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, - "Id": 385, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId" + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Id": 385 }, { "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, - "Id": 386, - "Command": "Get-PnPAzureADGroupMember -Identity $group" + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Id": 386 }, { "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, - "Id": 387, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Id": 387 }, { "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, - "Id": 388, - "Command": "Get-PnPAzureADGroupOwner -Identity $group" + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Id": 388 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "Id": 389, - "Command": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal", + "Id": 389 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, - "Id": 390, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Id": 390 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, - "Id": 391, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Id": 391 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, - "Id": 392, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Id": 392 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, - "Id": 393, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Id": 393 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, - "Id": 394, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 394 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, - "Id": 395, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 395 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, - "Id": 396, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 396 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, - "Id": 397, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Id": 397 }, { "CommandName": "Get-PnPAzureADUser", "Rank": 1, - "Id": 398, - "Command": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser", + "Id": 398 }, { "CommandName": "Get-PnPAzureADUser", "Rank": 2, - "Id": 399, - "Command": "Get-PnPAzureADUser -EndIndex 50" + "Command": "Get-PnPAzureADUser -EndIndex 50", + "Id": 399 }, { "CommandName": "Get-PnPAzureADUser", "Rank": 3, - "Id": 400, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 400 }, { "CommandName": "Get-PnPAzureADUser", "Rank": 4, - "Id": 401, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Id": 401 }, { "CommandName": "Get-PnPAzureADUser", "Rank": 5, - "Id": 402, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Id": 402 }, { "CommandName": "Get-PnPAzureADUser", "Rank": 6, - "Id": 403, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Id": 403 }, { "CommandName": "Get-PnPAzureADUser", "Rank": 7, - "Id": 404, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Id": 404 }, { "CommandName": "Get-PnPAzureADUser", "Rank": 8, - "Id": 405, - "Command": "Get-PnPAzureADUser -Delta" + "Command": "Get-PnPAzureADUser -Delta", + "Id": 405 }, { "CommandName": "Get-PnPAzureADUser", "Rank": 9, - "Id": 406, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Id": 406 }, { "CommandName": "Get-PnPAzureADUser", "Rank": 10, - "Id": 407, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Id": 407 }, { "CommandName": "Get-PnPAzureCertificate", "Rank": 1, - "Id": 408, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Id": 408 }, { "CommandName": "Get-PnPAzureCertificate", "Rank": 2, - "Id": 409, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Id": 409 }, { "CommandName": "Get-PnPAzureCertificate", "Rank": 3, - "Id": 410, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Id": 410 }, { "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, - "Id": 411, - "Command": "Get-PnPBrowserIdleSignout" + "Command": "Get-PnPBrowserIdleSignout", + "Id": 411 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, - "Id": 412, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Id": 412 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "Id": 413, - "Command": "Get-PnPBuiltInDesignPackageVisibility" + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 413 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "Id": 414, - "Command": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 414 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, - "Id": 415, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Id": 415 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, - "Id": 416, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Id": 416 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, - "Id": 417, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Id": 417 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, - "Id": 418, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Id": 418 }, { "CommandName": "Get-PnPChangeLog", "Rank": 1, - "Id": 419, - "Command": "Get-PnPChangeLog" + "Command": "Get-PnPChangeLog", + "Id": 419 }, { "CommandName": "Get-PnPChangeLog", "Rank": 2, - "Id": 420, - "Command": "Get-PnPChangeLog -Nightly" + "Command": "Get-PnPChangeLog -Nightly", + "Id": 420 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, - "Id": 421, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Id": 421 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, - "Id": 422, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Id": 422 }, { "CommandName": "Get-PnPContainer", "Rank": 1, - "Id": 423, - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996" + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", + "Id": 423 }, { "CommandName": "Get-PnPContainer", "Rank": 2, - "Id": 424, - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "Id": 424 }, { "CommandName": "Get-PnPContainer", "Rank": 3, - "Id": 425, - "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" + "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", + "Id": 425 }, { "CommandName": "Get-PnPContainerTypeConfiguration", "Rank": 1, - "Id": 426, - "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996" + "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", + "Id": 426 }, { "CommandName": "Get-PnPContentType", "Rank": 1, - "Id": 427, - "Command": "Get-PnPContentType" + "Command": "Get-PnPContentType", + "Id": 427 }, { "CommandName": "Get-PnPContentType", "Rank": 2, - "Id": 428, - "Command": "Get-PnPContentType -InSiteHierarchy" + "Command": "Get-PnPContentType -InSiteHierarchy", + "Id": 428 }, { "CommandName": "Get-PnPContentType", "Rank": 3, - "Id": 429, - "Command": "Get-PnPContentType -Identity \"Project Document\"" + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Id": 429 }, { "CommandName": "Get-PnPContentType", "Rank": 4, - "Id": 430, - "Command": "Get-PnPContentType -List \"Documents\"" + "Command": "Get-PnPContentType -List \"Documents\"", + "Id": 430 }, { "CommandName": "Get-PnPContentType", "Rank": 5, - "Id": 431, - "Command": "Get-PnPContentType -Includes \"SchemaXml\"" + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "Id": 431 }, { "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, - "Id": 432, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Id": 432 }, { "CommandName": "Get-PnPCustomAction", "Rank": 1, - "Id": 433, - "Command": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction", + "Id": 433 }, { "CommandName": "Get-PnPCustomAction", "Rank": 2, - "Id": 434, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 434 }, { "CommandName": "Get-PnPCustomAction", "Rank": 3, - "Id": 435, - "Command": "Get-PnPCustomAction -Scope web" + "Command": "Get-PnPCustomAction -Scope web", + "Id": 435 }, { "CommandName": "Get-PnPDeletedContainer", "Rank": 1, - "Id": 436, - "Command": "Get-PnPDeletedContainer" + "Command": "Get-PnPDeletedContainer", + "Id": 436 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "Id": 437, - "Command": "Get-PnPDeletedMicrosoft365Group" + "Command": "Get-PnPDeletedMicrosoft365Group", + "Id": 437 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, - "Id": 438, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 438 }, { "CommandName": "Get-PnPDeletedTeam", "Rank": 1, - "Id": 439, - "Command": "Get-PnPDeletedTeam" + "Command": "Get-PnPDeletedTeam", + "Id": 439 }, { "CommandName": "Get-PnPDiagnostics", "Rank": 1, - "Id": 440, - "Command": "Get-PnPDiagnostics" + "Command": "Get-PnPDiagnostics", + "Id": 440 }, { "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, - "Id": 441, - "Command": "Get-PnPDisableSpacesActivation" + "Command": "Get-PnPDisableSpacesActivation", + "Id": 441 }, { "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, - "Id": 442, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Id": 442 }, { "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, - "Id": 443, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Id": 443 }, { "CommandName": "Get-PnPEventReceiver", "Rank": 1, - "Id": 444, - "Command": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver", + "Id": 444 }, { "CommandName": "Get-PnPEventReceiver", "Rank": 2, - "Id": 445, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 445 }, { "CommandName": "Get-PnPEventReceiver", "Rank": 3, - "Id": 446, - "Command": "Get-PnPEventReceiver -Identity MyReceiver" + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Id": 446 }, { "CommandName": "Get-PnPEventReceiver", "Rank": 4, - "Id": 447, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"" + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Id": 447 }, { "CommandName": "Get-PnPEventReceiver", "Rank": 5, - "Id": 448, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 448 }, { "CommandName": "Get-PnPEventReceiver", "Rank": 6, - "Id": 449, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Id": 449 }, { "CommandName": "Get-PnPEventReceiver", "Rank": 7, - "Id": 450, - "Command": "Get-PnPEventReceiver -Scope Site" + "Command": "Get-PnPEventReceiver -Scope Site", + "Id": 450 }, { "CommandName": "Get-PnPEventReceiver", "Rank": 8, - "Id": 451, - "Command": "Get-PnPEventReceiver -Scope Web" + "Command": "Get-PnPEventReceiver -Scope Web", + "Id": 451 }, { "CommandName": "Get-PnPEventReceiver", "Rank": 9, - "Id": 452, - "Command": "Get-PnPEventReceiver -Scope All" + "Command": "Get-PnPEventReceiver -Scope All", + "Id": 452 }, { "CommandName": "Get-PnPException", "Rank": 1, - "Id": 453, - "Command": "Get-PnPException" + "Command": "Get-PnPException", + "Id": 453 }, { "CommandName": "Get-PnPException", "Rank": 2, - "Id": 454, - "Command": "Get-PnPException -All" + "Command": "Get-PnPException -All", + "Id": 454 }, { "CommandName": "Get-PnPExternalUser", "Rank": 1, - "Id": 455, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Id": 455 }, { "CommandName": "Get-PnPExternalUser", "Rank": 2, - "Id": 456, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Id": 456 }, { "CommandName": "Get-PnPFeature", "Rank": 1, - "Id": 457, - "Command": "Get-PnPFeature" + "Command": "Get-PnPFeature", + "Id": 457 }, { "CommandName": "Get-PnPFeature", "Rank": 2, - "Id": 458, - "Command": "Get-PnPFeature -Scope Site" + "Command": "Get-PnPFeature -Scope Site", + "Id": 458 }, { "CommandName": "Get-PnPFeature", "Rank": 3, - "Id": 459, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 459 }, { "CommandName": "Get-PnPFeature", "Rank": 4, - "Id": 460, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Id": 460 }, { "CommandName": "Get-PnPField", "Rank": 1, - "Id": 461, - "Command": "Get-PnPField" + "Command": "Get-PnPField", + "Id": 461 }, { "CommandName": "Get-PnPField", "Rank": 2, - "Id": 462, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 462 }, { "CommandName": "Get-PnPField", "Rank": 3, - "Id": 463, - "Command": "Get-PnPField -Group \"Custom Columns\"" + "Command": "Get-PnPField -Group \"Custom Columns\"", + "Id": 463 }, { "CommandName": "Get-PnPFile", "Rank": 1, - "Id": 464, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "Id": 464 }, { "CommandName": "Get-PnPFile", "Rank": 2, - "Id": 465, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "Id": 465 }, { "CommandName": "Get-PnPFile", "Rank": 3, - "Id": 466, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "Id": 466 }, { "CommandName": "Get-PnPFile", "Rank": 4, - "Id": 467, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "Id": 467 }, { "CommandName": "Get-PnPFile", "Rank": 5, - "Id": 468, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "Id": 468 }, { "CommandName": "Get-PnPFile", "Rank": 6, - "Id": 469, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "Id": 469 }, { "CommandName": "Get-PnPFile", "Rank": 7, - "Id": 470, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Id": 470 }, { "CommandName": "Get-PnPFileAnalyticsData", "Rank": 1, - "Id": 471, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"" + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"", + "Id": 471 }, { "CommandName": "Get-PnPFileAnalyticsData", "Rank": 2, - "Id": 472, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays" + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays", + "Id": 472 }, { "CommandName": "Get-PnPFileAnalyticsData", "Rank": 3, - "Id": 473, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", + "Id": 473 }, { "CommandName": "Get-PnPFileInFolder", "Rank": 1, - "Id": 474, - "Command": "Get-PnPFileInFolder" + "Command": "Get-PnPFileInFolder", + "Id": 474 }, { "CommandName": "Get-PnPFileInFolder", "Rank": 2, - "Id": 475, - "Command": "Get-PnPFileInFolder -Recurse" + "Command": "Get-PnPFileInFolder -Recurse", + "Id": 475 }, { "CommandName": "Get-PnPFileInFolder", "Rank": 3, - "Id": 476, - "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"" + "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", + "Id": 476 }, { "CommandName": "Get-PnPFileInFolder", "Rank": 4, - "Id": 477, - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 477 }, { "CommandName": "Get-PnPFileInFolder", "Rank": 5, - "Id": 478, - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", + "Id": 478 }, { "CommandName": "Get-PnPFileSharingLink", "Rank": 1, - "Id": 479, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 479 }, { "CommandName": "Get-PnPFileVersion", "Rank": 1, - "Id": 480, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Id": 480 }, { "CommandName": "Get-PnPFileVersion", "Rank": 2, - "Id": 481, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Id": 481 }, { "CommandName": "Get-PnPFlow", "Rank": 1, - "Id": 482, - "Command": "Get-PnPFlow -AsAdmin" + "Command": "Get-PnPFlow -AsAdmin", + "Id": 482 }, { "CommandName": "Get-PnPFlow", "Rank": 2, - "Id": 483, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe" + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Id": 483 }, { "CommandName": "Get-PnPFlow", "Rank": 3, - "Id": 484, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Id": 484 }, { "CommandName": "Get-PnPFlowOwner", "Rank": 1, - "Id": 485, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Id": 485 }, { "CommandName": "Get-PnPFolder", "Rank": 1, - "Id": 486, - "Command": "Get-PnPFolder" + "Command": "Get-PnPFolder", + "Id": 486 }, { "CommandName": "Get-PnPFolder", "Rank": 2, - "Id": 487, - "Command": "Get-PnPFolder -CurrentWebRootFolder" + "Command": "Get-PnPFolder -CurrentWebRootFolder", + "Id": 487 }, { "CommandName": "Get-PnPFolder", "Rank": 3, - "Id": 488, - "Command": "Get-PnPFolder -Url \"Shared Documents\"" + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Id": 488 }, { "CommandName": "Get-PnPFolder", "Rank": 4, - "Id": 489, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Id": 489 }, { "CommandName": "Get-PnPFolder", "Rank": 5, - "Id": 490, - "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"" + "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", + "Id": 490 }, { "CommandName": "Get-PnPFolder", "Rank": 6, - "Id": 491, - "Command": "Get-PnPFolder -List \"Shared Documents\"" + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Id": 491 }, { "CommandName": "Get-PnPFolderInFolder", "Rank": 1, - "Id": 492, - "Command": "Get-PnPFolderInFolder" + "Command": "Get-PnPFolderInFolder", + "Id": 492 }, { "CommandName": "Get-PnPFolderInFolder", "Rank": 2, - "Id": 493, - "Command": "Get-PnPFolderInFolder -Recurse" + "Command": "Get-PnPFolderInFolder -Recurse", + "Id": 493 }, { "CommandName": "Get-PnPFolderInFolder", "Rank": 3, - "Id": 494, - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"" + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", + "Id": 494 }, { "CommandName": "Get-PnPFolderInFolder", "Rank": 4, - "Id": 495, - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Id": 495 }, { "CommandName": "Get-PnPFolderInFolder", "Rank": 5, - "Id": 496, - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Id": 496 }, { "CommandName": "Get-PnPFolderInFolder", "Rank": 6, - "Id": 497, - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", + "Id": 497 }, { "CommandName": "Get-PnPFolderItem", "Rank": 1, - "Id": 498, - "Command": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem", + "Id": 498 }, { "CommandName": "Get-PnPFolderItem", "Rank": 2, - "Id": 499, - "Command": "Get-PnPFolderItem -Recurse" + "Command": "Get-PnPFolderItem -Recurse", + "Id": 499 }, { "CommandName": "Get-PnPFolderItem", "Rank": 3, - "Id": 500, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Id": 500 }, { "CommandName": "Get-PnPFolderItem", "Rank": 4, - "Id": 501, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 501 }, { "CommandName": "Get-PnPFolderItem", "Rank": 5, - "Id": 502, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Id": 502 }, { "CommandName": "Get-PnPFolderItem", "Rank": 6, - "Id": 503, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Id": 503 }, { "CommandName": "Get-PnPFolderSharingLink", "Rank": 1, - "Id": 504, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 504 }, { "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, - "Id": 505, - "Command": "Get-PnPFolderStorageMetric" + "Command": "Get-PnPFolderStorageMetric", + "Id": 505 }, { "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2, - "Id": 506, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Id": 506 }, { "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3, - "Id": 507, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Id": 507 }, { "CommandName": "Get-PnPFooter", "Rank": 1, - "Id": 508, - "Command": "Get-PnPFooter" + "Command": "Get-PnPFooter", + "Id": 508 }, { "CommandName": "Get-PnPGraphAccessToken", "Rank": 1, - "Id": 509, - "Command": "Get-PnPGraphAccessToken" + "Command": "Get-PnPGraphAccessToken", + "Id": 509 }, { "CommandName": "Get-PnPGraphAccessToken", "Rank": 2, - "Id": 510, - "Command": "Get-PnPGraphAccessToken -Decoded" + "Command": "Get-PnPGraphAccessToken -Decoded", + "Id": 510 }, { "CommandName": "Get-PnPGraphSubscription", "Rank": 1, - "Id": 511, - "Command": "Get-PnPGraphSubscription" + "Command": "Get-PnPGraphSubscription", + "Id": 511 }, { "CommandName": "Get-PnPGraphSubscription", "Rank": 2, - "Id": 512, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 512 }, { "CommandName": "Get-PnPGroup", "Rank": 1, - "Id": 513, - "Command": "Get-PnPGroup" + "Command": "Get-PnPGroup", + "Id": 513 }, { "CommandName": "Get-PnPGroup", "Rank": 2, - "Id": 514, - "Command": "Get-PnPGroup -Identity 'My Site Users'" + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Id": 514 }, { "CommandName": "Get-PnPGroup", "Rank": 3, - "Id": 515, - "Command": "Get-PnPGroup -AssociatedMemberGroup" + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Id": 515 }, { "CommandName": "Get-PnPGroupMember", "Rank": 1, - "Id": 516, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Id": 516 }, { "CommandName": "Get-PnPGroupMember", "Rank": 2, - "Id": 517, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Id": 517 }, { "CommandName": "Get-PnPGroupPermissions", "Rank": 1, - "Id": 518, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Id": 518 }, { "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, - "Id": 519, - "Command": "Get-PnPHideDefaultThemes" + "Command": "Get-PnPHideDefaultThemes", + "Id": 519 }, { "CommandName": "Get-PnPHomePage", "Rank": 1, - "Id": 520, - "Command": "Get-PnPHomePage" + "Command": "Get-PnPHomePage", + "Id": 520 }, { "CommandName": "Get-PnPHomeSite", "Rank": 1, - "Id": 521, - "Command": "Get-PnPHomeSite" + "Command": "Get-PnPHomeSite", + "Id": 521 }, { "CommandName": "Get-PnPHomeSite", "Rank": 2, - "Id": 522, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Id": 522 }, { "CommandName": "Get-PnPHomeSite", "Rank": 3, - "Id": 523, - "Command": "Get-PnPHomeSite -Detailed" + "Command": "Get-PnPHomeSite -Detailed", + "Id": 523 }, { "CommandName": "Get-PnPHubSite", "Rank": 1, - "Id": 524, - "Command": "Get-PnPHubSite" + "Command": "Get-PnPHubSite", + "Id": 524 }, { "CommandName": "Get-PnPHubSite", "Rank": 2, - "Id": 525, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 525 }, { "CommandName": "Get-PnPHubSite", "Rank": 3, - "Id": 526, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Id": 526 }, { "CommandName": "Get-PnPHubSiteChild", "Rank": 1, - "Id": 527, - "Command": "Get-PnPHubSiteChild" + "Command": "Get-PnPHubSiteChild", + "Id": 527 }, { "CommandName": "Get-PnPHubSiteChild", "Rank": 2, - "Id": 528, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 528 }, { "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "Id": 529, - "Command": "Get-PnPInPlaceRecordsManagement" + "Command": "Get-PnPInPlaceRecordsManagement", + "Id": 529 }, { "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1, - "Id": 530, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Id": 530 }, { "CommandName": "Get-PnPJavaScriptLink", "Rank": 1, - "Id": 531, - "Command": "Get-PnPJavaScriptLink" + "Command": "Get-PnPJavaScriptLink", + "Id": 531 }, { "CommandName": "Get-PnPJavaScriptLink", "Rank": 2, - "Id": 532, - "Command": "Get-PnPJavaScriptLink -Scope All" + "Command": "Get-PnPJavaScriptLink -Scope All", + "Id": 532 }, { "CommandName": "Get-PnPJavaScriptLink", "Rank": 3, - "Id": 533, - "Command": "Get-PnPJavaScriptLink -Scope Web" + "Command": "Get-PnPJavaScriptLink -Scope Web", + "Id": 533 }, { "CommandName": "Get-PnPJavaScriptLink", "Rank": 4, - "Id": 534, - "Command": "Get-PnPJavaScriptLink -Scope Site" + "Command": "Get-PnPJavaScriptLink -Scope Site", + "Id": 534 }, { "CommandName": "Get-PnPJavaScriptLink", "Rank": 5, - "Id": 535, - "Command": "Get-PnPJavaScriptLink -Name Test" + "Command": "Get-PnPJavaScriptLink -Name Test", + "Id": 535 }, { "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, - "Id": 536, - "Command": "Get-PnPKnowledgeHubSite" + "Command": "Get-PnPKnowledgeHubSite", + "Id": 536 }, { "CommandName": "Get-PnPLabel", "Rank": 1, - "Id": 537, - "Command": "Get-PnPLabel" + "Command": "Get-PnPLabel", + "Id": 537 }, { "CommandName": "Get-PnPLabel", "Rank": 2, - "Id": 538, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Id": 538 }, { "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1, - "Id": 539, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Id": 539 }, { "CommandName": "Get-PnPList", "Rank": 1, - "Id": 540, - "Command": "Get-PnPList" + "Command": "Get-PnPList", + "Id": 540 }, { "CommandName": "Get-PnPList", "Rank": 2, - "Id": 541, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 541 }, { "CommandName": "Get-PnPList", "Rank": 3, - "Id": 542, - "Command": "Get-PnPList -Identity Lists/Announcements" + "Command": "Get-PnPList -Identity Lists/Announcements", + "Id": 542 }, { "CommandName": "Get-PnPList", "Rank": 4, - "Id": 543, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Id": 543 }, { "CommandName": "Get-PnPList", "Rank": 5, - "Id": 544, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Id": 544 }, { "CommandName": "Get-PnPListDesign", "Rank": 1, - "Id": 545, - "Command": "Get-PnPListDesign" + "Command": "Get-PnPListDesign", + "Id": 545 }, { "CommandName": "Get-PnPListDesign", "Rank": 2, - "Id": 546, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 546 }, { "CommandName": "Get-PnPListDesign", "Rank": 3, - "Id": 547, - "Command": "Get-PnPListDesign -Identity ListEvent" + "Command": "Get-PnPListDesign -Identity ListEvent", + "Id": 547 }, { "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1, - "Id": 548, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Id": 548 }, { "CommandName": "Get-PnPListItem", "Rank": 1, - "Id": 549, - "Command": "Get-PnPListItem -List Tasks" + "Command": "Get-PnPListItem -List Tasks", + "Id": 549 }, { "CommandName": "Get-PnPListItem", "Rank": 2, - "Id": 550, - "Command": "Get-PnPListItem -List Tasks -Id 1" + "Command": "Get-PnPListItem -List Tasks -Id 1", + "Id": 550 }, { "CommandName": "Get-PnPListItem", "Rank": 3, - "Id": 551, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Id": 551 }, { "CommandName": "Get-PnPListItem", "Rank": 4, - "Id": 552, - "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"" + "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"", + "Id": 552 }, { "CommandName": "Get-PnPListItem", "Rank": 5, - "Id": 553, - "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"" + "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"", + "Id": 553 }, { "CommandName": "Get-PnPListItem", "Rank": 6, - "Id": 554, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000" + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "Id": 554 }, { "CommandName": "Get-PnPListItem", "Rank": 7, - "Id": 555, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "Id": 555 }, { "CommandName": "Get-PnPListItem", "Rank": 8, - "Id": 556, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Id": 556 }, { "CommandName": "Get-PnPListItem", "Rank": 9, - "Id": 557, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Id": 557 }, { "CommandName": "Get-PnPListItemAttachment", "Rank": 1, - "Id": 558, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "Id": 558 }, { "CommandName": "Get-PnPListItemAttachment", "Rank": 2, - "Id": 559, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Id": 559 }, { "CommandName": "Get-PnPListItemComment", "Rank": 1, - "Id": 560, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1" + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Id": 560 }, { "CommandName": "Get-PnPListItemPermission", "Rank": 1, - "Id": 561, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Id": 561 }, { "CommandName": "Get-PnPListItemVersion", "Rank": 1, - "Id": 562, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Id": 562 }, { "CommandName": "Get-PnPListPermissions", "Rank": 1, - "Id": 563, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Id": 563 }, { "CommandName": "Get-PnPListPermissions", "Rank": 2, - "Id": 564, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Id": 564 }, { "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, - "Id": 565, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Id": 565 }, { "CommandName": "Get-PnPMasterPage", "Rank": 1, - "Id": 566, - "Command": "Get-PnPMasterPage" + "Command": "Get-PnPMasterPage", + "Id": 566 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "Id": 567, - "Command": "Get-PnPMessageCenterAnnouncement" + "Command": "Get-PnPMessageCenterAnnouncement", + "Id": 567 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, - "Id": 568, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Id": 568 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "Id": 569, - "Command": "Get-PnPMicrosoft365ExpiringGroup" + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 569 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, - "Id": 570, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Id": 570 }, { "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1, - "Id": 571, - "Command": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group", + "Id": 571 }, { "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2, - "Id": 572, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId" + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Id": 572 }, { "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3, - "Id": 573, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Id": 573 }, { "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4, - "Id": 574, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Id": 574 }, { "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5, - "Id": 575, - "Command": "Get-PnPMicrosoft365Group -Identity $group" + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Id": 575 }, { "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6, - "Id": 576, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Id": 576 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "Id": 577, - "Command": "Get-PnPMicrosoft365GroupEndpoint" + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 577 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, - "Id": 578, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Id": 578 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, - "Id": 579, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 579 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, - "Id": 580, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Id": 580 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, - "Id": 581, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Id": 581 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3, - "Id": 582, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Id": 582 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, - "Id": 583, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Id": 583 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, - "Id": 584, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Id": 584 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 585, - "Command": "Get-PnPMicrosoft365GroupSettings" + "Command": "Get-PnPMicrosoft365GroupSettings", + "Id": 585 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, - "Id": 586, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Id": 586 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "Id": 587, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 587 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, - "Id": 588, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Id": 588 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "Id": 589, - "Command": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupTeam", + "Id": 589 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, - "Id": 590, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Id": 590 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, - "Id": 591, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 591 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "Id": 592, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 592 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, - "Id": 593, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Id": 593 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, - "Id": 594, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 594 }, { "CommandName": "Get-PnPNavigationNode", "Rank": 1, - "Id": 595, - "Command": "Get-PnPNavigationNode" + "Command": "Get-PnPNavigationNode", + "Id": 595 }, { "CommandName": "Get-PnPNavigationNode", "Rank": 2, - "Id": 596, - "Command": "Get-PnPNavigationNode -Location QuickLaunch" + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Id": 596 }, { "CommandName": "Get-PnPNavigationNode", "Rank": 3, - "Id": 597, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar" + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Id": 597 }, { "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "Id": 598, - "Command": "Get-PnPOrgAssetsLibrary" + "Command": "Get-PnPOrgAssetsLibrary", + "Id": 598 }, { "CommandName": "Get-PnPOrgNewsSite", "Rank": 1, - "Id": 599, - "Command": "Get-PnPOrgNewsSite" + "Command": "Get-PnPOrgNewsSite", + "Id": 599 }, { "CommandName": "Get-PnPPage", "Rank": 1, - "Id": 600, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Id": 600 }, { "CommandName": "Get-PnPPage", "Rank": 2, - "Id": 601, - "Command": "Get-PnPPage \"MyPage\"" + "Command": "Get-PnPPage \"MyPage\"", + "Id": 601 }, { "CommandName": "Get-PnPPage", "Rank": 3, - "Id": 602, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Id": 602 }, { "CommandName": "Get-PnPPage", "Rank": 4, - "Id": 603, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Id": 603 }, { "CommandName": "Get-PnPPageComponent", "Rank": 1, - "Id": 604, - "Command": "Get-PnPPageComponent -Page Home" + "Command": "Get-PnPPageComponent -Page Home", + "Id": 604 }, { "CommandName": "Get-PnPPageComponent", "Rank": 2, - "Id": 605, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 605 }, { "CommandName": "Get-PnPPageComponent", "Rank": 3, - "Id": 606, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable" + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Id": 606 }, { "CommandName": "Get-PnPPlannerBucket", "Rank": 1, - "Id": 607, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 607 }, { "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1, - "Id": 608, - "Command": "Get-PnPPlannerConfiguration" + "Command": "Get-PnPPlannerConfiguration", + "Id": 608 }, { "CommandName": "Get-PnPPlannerPlan", "Rank": 1, - "Id": 609, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Id": 609 }, { "CommandName": "Get-PnPPlannerPlan", "Rank": 2, - "Id": 610, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Id": 610 }, { "CommandName": "Get-PnPPlannerPlan", "Rank": 3, - "Id": 611, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Id": 611 }, { "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, - "Id": 612, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 612 }, { "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, - "Id": 613, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Id": 613 }, { "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, - "Id": 614, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 614 }, { "CommandName": "Get-PnPPlannerTask", "Rank": 1, - "Id": 615, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 615 }, { "CommandName": "Get-PnPPlannerTask", "Rank": 2, - "Id": 616, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 616 }, { "CommandName": "Get-PnPPlannerTask", "Rank": 3, - "Id": 617, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 617 }, { "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, - "Id": 618, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 618 }, { "CommandName": "Get-PnPPowerPlatformConnector", "Rank": 1, - "Id": 619, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Id": 619 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "Id": 620, - "Command": "Get-PnPPowerPlatformEnvironment" + "Command": "Get-PnPPowerPlatformEnvironment", + "Id": 620 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2, - "Id": 621, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Id": 621 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3, - "Id": 622, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Id": 622 }, { "CommandName": "Get-PnPPowerPlatformSolution", "Rank": 1, - "Id": 623, - "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)" + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)", + "Id": 623 }, { "CommandName": "Get-PnPPowerPlatformSolution", "Rank": 2, - "Id": 624, - "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'" + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'", + "Id": 624 }, { "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "Id": 625, - "Command": "Get-PnPPowerShellTelemetryEnabled" + "Command": "Get-PnPPowerShellTelemetryEnabled", + "Id": 625 }, { "CommandName": "Get-PnPPropertyBag", "Rank": 1, - "Id": 626, - "Command": "Get-PnPPropertyBag" + "Command": "Get-PnPPropertyBag", + "Id": 626 }, { "CommandName": "Get-PnPPropertyBag", "Rank": 2, - "Id": 627, - "Command": "Get-PnPPropertyBag -Key MyKey" + "Command": "Get-PnPPropertyBag -Key MyKey", + "Id": 627 }, { "CommandName": "Get-PnPPropertyBag", "Rank": 3, - "Id": 628, - "Command": "Get-PnPPropertyBag -Folder /MyFolder" + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Id": 628 }, { "CommandName": "Get-PnPPropertyBag", "Rank": 4, - "Id": 629, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Id": 629 }, { "CommandName": "Get-PnPPropertyBag", "Rank": 5, - "Id": 630, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Id": 630 }, { "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1, - "Id": 631, - "Command": "Get-PnPPublishingImageRendition" + "Command": "Get-PnPPublishingImageRendition", + "Id": 631 }, { "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2, - "Id": 632, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Id": 632 }, { "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3, - "Id": 633, - "Command": "Get-PnPPublishingImageRendition -Identity 2" + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Id": 633 }, { "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, - "Id": 634, - "Command": "Get-PnPRecycleBinItem" + "Command": "Get-PnPRecycleBinItem", + "Id": 634 }, { "CommandName": "Get-PnPRecycleBinItem", "Rank": 2, - "Id": 635, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Id": 635 }, { "CommandName": "Get-PnPRecycleBinItem", "Rank": 3, - "Id": 636, - "Command": "Get-PnPRecycleBinItem -FirstStage" + "Command": "Get-PnPRecycleBinItem -FirstStage", + "Id": 636 }, { "CommandName": "Get-PnPRecycleBinItem", "Rank": 4, - "Id": 637, - "Command": "Get-PnPRecycleBinItem -SecondStage" + "Command": "Get-PnPRecycleBinItem -SecondStage", + "Id": 637 }, { "CommandName": "Get-PnPRecycleBinItem", "Rank": 5, - "Id": 638, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000" + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Id": 638 }, { "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1, - "Id": 639, - "Command": "Get-PnPRequestAccessEmails" + "Command": "Get-PnPRequestAccessEmails", + "Id": 639 }, { "CommandName": "Get-PnPRetentionLabel", "Rank": 1, - "Id": 640, - "Command": "Get-PnPRetentionLabel" + "Command": "Get-PnPRetentionLabel", + "Id": 640 }, { "CommandName": "Get-PnPRetentionLabel", "Rank": 2, - "Id": 641, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Id": 641 }, { "CommandName": "Get-PnPRoleDefinition", "Rank": 1, - "Id": 642, - "Command": "Get-PnPRoleDefinition" + "Command": "Get-PnPRoleDefinition", + "Id": 642 }, { "CommandName": "Get-PnPRoleDefinition", "Rank": 2, - "Id": 643, - "Command": "Get-PnPRoleDefinition -Identity Read" + "Command": "Get-PnPRoleDefinition -Identity Read", + "Id": 643 }, { "CommandName": "Get-PnPRoleDefinition", "Rank": 3, - "Id": 644, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Id": 644 }, { "CommandName": "Get-PnPSearchConfiguration", "Rank": 1, - "Id": 645, - "Command": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration", + "Id": 645 }, { "CommandName": "Get-PnPSearchConfiguration", "Rank": 2, - "Id": 646, - "Command": "Get-PnPSearchConfiguration -Scope Site" + "Command": "Get-PnPSearchConfiguration -Scope Site", + "Id": 646 }, { "CommandName": "Get-PnPSearchConfiguration", "Rank": 3, - "Id": 647, - "Command": "Get-PnPSearchConfiguration -Scope Subscription" + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Id": 647 }, { "CommandName": "Get-PnPSearchConfiguration", "Rank": 4, - "Id": 648, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 648 }, { "CommandName": "Get-PnPSearchConfiguration", "Rank": 5, - "Id": 649, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Id": 649 }, { "CommandName": "Get-PnPSearchConfiguration", "Rank": 6, - "Id": 650, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Id": 650 }, { "CommandName": "Get-PnPSearchConfiguration", "Rank": 7, - "Id": 651, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Id": 651 }, { "CommandName": "Get-PnPSearchConfiguration", "Rank": 8, - "Id": 652, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Id": 652 }, { "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1, - "Id": 653, - "Command": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog", + "Id": 653 }, { "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2, - "Id": 654, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Id": 654 }, { "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3, - "Id": 655, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Id": 655 }, { "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4, - "Id": 656, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Id": 656 }, { "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5, - "Id": 657, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Id": 657 }, { "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6, - "Id": 658, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Id": 658 }, { "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7, - "Id": 659, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Id": 659 }, { "CommandName": "Get-PnPSearchSettings", "Rank": 1, - "Id": 660, - "Command": "Get-PnPSearchSettings" + "Command": "Get-PnPSearchSettings", + "Id": 660 }, { "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, - "Id": 661, - "Command": "Get-PnPServiceCurrentHealth" + "Command": "Get-PnPServiceCurrentHealth", + "Id": 661 }, { "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, - "Id": 662, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Id": 662 }, { "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, - "Id": 663, - "Command": "Get-PnPServiceHealthIssue" + "Command": "Get-PnPServiceHealthIssue", + "Id": 663 }, { "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, - "Id": 664, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Id": 664 }, { "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, - "Id": 665, - "Command": "Get-PnPSharePointAddIn" + "Command": "Get-PnPSharePointAddIn", + "Id": 665 }, { "CommandName": "Get-PnPSharePointAddIn", "Rank": 2, - "Id": 666, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites" + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Id": 666 }, { "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Id": 667, - "Command": "Get-PnPSharingForNonOwnersOfSite" + "Command": "Get-PnPSharingForNonOwnersOfSite", + "Id": 667 }, { "CommandName": "Get-PnPSite", "Rank": 1, - "Id": 668, - "Command": "Get-PnPSite" + "Command": "Get-PnPSite", + "Id": 668 }, { "CommandName": "Get-PnPSite", "Rank": 2, - "Id": 669, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Id": 669 }, { "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 1, - "Id": 670, - "Command": "Get-PnPSiteAnalyticsData -All" + "Command": "Get-PnPSiteAnalyticsData -All", + "Id": 670 }, { "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 2, - "Id": 671, - "Command": "Get-PnPSiteAnalyticsData -LastSevenDays" + "Command": "Get-PnPSiteAnalyticsData -LastSevenDays", + "Id": 671 }, { "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 3, - "Id": 672, - "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" + "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", + "Id": 672 }, { "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 4, - "Id": 673, - "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" + "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", + "Id": 673 }, { "CommandName": "Get-PnPSiteClosure", "Rank": 1, - "Id": 674, - "Command": "Get-PnPSiteClosure" + "Command": "Get-PnPSiteClosure", + "Id": 674 }, { "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "Id": 675, - "Command": "Get-PnPSiteCollectionAdmin" + "Command": "Get-PnPSiteCollectionAdmin", + "Id": 675 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 676, - "Command": "Get-PnPSiteCollectionAppCatalog" + "Command": "Get-PnPSiteCollectionAppCatalog", + "Id": 676 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, - "Id": 677, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Id": 677 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, - "Id": 678, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Id": 678 }, { "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 679, - "Command": "Get-PnPSiteCollectionTermStore" + "Command": "Get-PnPSiteCollectionTermStore", + "Id": 679 }, { "CommandName": "Get-PnPSiteDesign", "Rank": 1, - "Id": 680, - "Command": "Get-PnPSiteDesign" + "Command": "Get-PnPSiteDesign", + "Id": 680 }, { "CommandName": "Get-PnPSiteDesign", "Rank": 2, - "Id": 681, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 681 }, { "CommandName": "Get-PnPSiteDesignRights", "Rank": 1, - "Id": 682, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 682 }, { "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, - "Id": 683, - "Command": "Get-PnPSiteDesignRun" + "Command": "Get-PnPSiteDesignRun", + "Id": 683 }, { "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, - "Id": 684, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Id": 684 }, { "CommandName": "Get-PnPSiteDesignTask", "Rank": 1, - "Id": 685, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 685 }, { "CommandName": "Get-PnPSiteDesignTask", "Rank": 2, - "Id": 686, - "Command": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteDesignTask", + "Id": 686 }, { "CommandName": "Get-PnPSiteDesignTask", "Rank": 3, - "Id": 687, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Id": 687 }, { "CommandName": "Get-PnPSiteGroup", "Rank": 1, - "Id": 688, - "Command": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteGroup", + "Id": 688 }, { "CommandName": "Get-PnPSiteGroup", "Rank": 2, - "Id": 689, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 689 }, { "CommandName": "Get-PnPSiteGroup", "Rank": 3, - "Id": 690, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Id": 690 }, { "CommandName": "Get-PnPSiteGroup", "Rank": 4, - "Id": 691, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 691 }, { "CommandName": "Get-PnPSitePolicy", "Rank": 1, - "Id": 692, - "Command": "Get-PnPSitePolicy" + "Command": "Get-PnPSitePolicy", + "Id": 692 }, { "CommandName": "Get-PnPSitePolicy", "Rank": 2, - "Id": 693, - "Command": "Get-PnPSitePolicy -AllAvailable" + "Command": "Get-PnPSitePolicy -AllAvailable", + "Id": 693 }, { "CommandName": "Get-PnPSitePolicy", "Rank": 3, - "Id": 694, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 694 }, { "CommandName": "Get-PnPSiteScript", "Rank": 1, - "Id": 695, - "Command": "Get-PnPSiteScript" + "Command": "Get-PnPSiteScript", + "Id": 695 }, { "CommandName": "Get-PnPSiteScript", "Rank": 2, - "Id": 696, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 696 }, { "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, - "Id": 697, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Id": 697 }, { "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, - "Id": 698, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "Id": 698 }, { "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, - "Id": 699, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Id": 699 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1, - "Id": 700, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Id": 700 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2, - "Id": 701, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "Id": 701 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 3, - "Id": 702, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "Id": 702 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4, - "Id": 703, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Id": 703 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5, - "Id": 704, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Id": 704 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 6, - "Id": 705, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Id": 705 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "Id": 706, - "Command": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteSearchQueryResults", + "Id": 706 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2, - "Id": 707, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Id": 707 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3, - "Id": 708, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Id": 708 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4, - "Id": 709, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Id": 709 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5, - "Id": 710, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Id": 710 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6, - "Id": 711, - "Command": "Get-PnPSiteSearchQueryResults -All" + "Command": "Get-PnPSiteSearchQueryResults -All", + "Id": 711 }, { "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "Id": 712, - "Command": "Get-PnPSiteSensitivityLabel" + "Command": "Get-PnPSiteSensitivityLabel", + "Id": 712 }, { "CommandName": "Get-PnPSiteSetVersionPolicyProgress", "Rank": 1, - "Id": 713, - "Command": "Get-PnPSiteSetVersionPolicyProgress" + "Command": "Get-PnPSiteSetVersionPolicyProgress", + "Id": 713 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 1, - "Id": 714, - "Command": "Get-PnPSiteTemplate -Out template.pnp" + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Id": 714 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 2, - "Id": 715, - "Command": "Get-PnPSiteTemplate -Out template.xml" + "Command": "Get-PnPSiteTemplate -Out template.xml", + "Id": 715 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 3, - "Id": 716, - "Command": "Get-PnPSiteTemplate -Out template.md" + "Command": "Get-PnPSiteTemplate -Out template.md", + "Id": 716 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 4, - "Id": 717, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Id": 717 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 5, - "Id": 718, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Id": 718 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 6, - "Id": 719, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Id": 719 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 7, - "Id": 720, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Id": 720 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 8, - "Id": 721, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Id": 721 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 9, - "Id": 722, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Id": 722 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 10, - "Id": 723, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Id": 723 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 11, - "Id": 724, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Id": 724 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 12, - "Id": 725, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "Id": 725 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 13, - "Id": 726, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", + "Id": 726 }, { "CommandName": "Get-PnPSiteTemplate", "Rank": 14, - "Id": 727, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "Id": 727 }, { "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, - "Id": 728, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 728 }, { "CommandName": "Get-PnPSiteVersionPolicy", "Rank": 1, - "Id": 729, - "Command": "Get-PnPSiteVersionPolicy" + "Command": "Get-PnPSiteVersionPolicy", + "Id": 729 }, { "CommandName": "Get-PnPStorageEntity", "Rank": 1, - "Id": 730, - "Command": "Get-PnPStorageEntity" + "Command": "Get-PnPStorageEntity", + "Id": 730 }, { "CommandName": "Get-PnPStorageEntity", "Rank": 2, - "Id": 731, - "Command": "Get-PnPStorageEntity -Key MyKey" + "Command": "Get-PnPStorageEntity -Key MyKey", + "Id": 731 }, { "CommandName": "Get-PnPStorageEntity", "Rank": 3, - "Id": 732, - "Command": "Get-PnPStorageEntity -Scope Site" + "Command": "Get-PnPStorageEntity -Scope Site", + "Id": 732 }, { "CommandName": "Get-PnPStorageEntity", "Rank": 4, - "Id": 733, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 733 }, { "CommandName": "Get-PnPStoredCredential", "Rank": 1, - "Id": 734, - "Command": "Get-PnPStoredCredential -Name O365" + "Command": "Get-PnPStoredCredential -Name O365", + "Id": 734 }, { "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, - "Id": 735, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 735 }, { "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, - "Id": 736, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 736 }, { "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1, - "Id": 737, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Id": 737 }, { "CommandName": "Get-PnPSubWeb", "Rank": 1, - "Id": 738, - "Command": "Get-PnPSubWeb" + "Command": "Get-PnPSubWeb", + "Id": 738 }, { "CommandName": "Get-PnPSubWeb", "Rank": 2, - "Id": 739, - "Command": "Get-PnPSubWeb -Recurse" + "Command": "Get-PnPSubWeb -Recurse", + "Id": 739 }, { "CommandName": "Get-PnPSubWeb", "Rank": 3, - "Id": 740, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Id": 740 }, { "CommandName": "Get-PnPSubWeb", "Rank": 4, - "Id": 741, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Id": 741 }, { "CommandName": "Get-PnPSubWeb", "Rank": 5, - "Id": 742, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Id": 742 }, { "CommandName": "Get-PnPSyntexModel", "Rank": 1, - "Id": 743, - "Command": "Get-PnPSyntexModel" + "Command": "Get-PnPSyntexModel", + "Id": 743 }, { "CommandName": "Get-PnPSyntexModel", "Rank": 2, - "Id": 744, - "Command": "Get-PnPSyntexModel -Identity 1" + "Command": "Get-PnPSyntexModel -Identity 1", + "Id": 744 }, { "CommandName": "Get-PnPSyntexModel", "Rank": 3, - "Id": 745, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Id": 745 }, { "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, - "Id": 746, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Id": 746 }, { "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, - "Id": 747, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Id": 747 }, { "CommandName": "Get-PnPTeamsApp", "Rank": 1, - "Id": 748, - "Command": "Get-PnPTeamsApp" + "Command": "Get-PnPTeamsApp", + "Id": 748 }, { "CommandName": "Get-PnPTeamsApp", "Rank": 2, - "Id": 749, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Id": 749 }, { "CommandName": "Get-PnPTeamsApp", "Rank": 3, - "Id": 750, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Id": 750 }, { "CommandName": "Get-PnPTeamsChannel", "Rank": 1, - "Id": 751, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Id": 751 }, { "CommandName": "Get-PnPTeamsChannel", "Rank": 2, - "Id": 752, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "Id": 752 }, { "CommandName": "Get-PnPTeamsChannel", "Rank": 3, - "Id": 753, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 753 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, - "Id": 754, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "Id": 754 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, - "Id": 755, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 755 }, { "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, - "Id": 756, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Id": 756 }, { "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, - "Id": 757, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Id": 757 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, - "Id": 758, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "Id": 758 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, - "Id": 759, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Id": 759 }, { "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1, - "Id": 760, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Id": 760 }, { "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2, - "Id": 761, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "Id": 761 }, { "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3, - "Id": 762, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "Id": 762 }, { "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4, - "Id": 763, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 763 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, - "Id": 764, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Id": 764 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, - "Id": 765, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Id": 765 }, { "CommandName": "Get-PnPTeamsTab", "Rank": 1, - "Id": 766, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "Id": 766 }, { "CommandName": "Get-PnPTeamsTab", "Rank": 2, - "Id": 767, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "Id": 767 }, { "CommandName": "Get-PnPTeamsTab", "Rank": 3, - "Id": 768, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", + "Id": 768 }, { "CommandName": "Get-PnPTeamsTab", "Rank": 4, - "Id": 769, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Id": 769 }, { "CommandName": "Get-PnPTeamsTab", "Rank": 5, - "Id": 770, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Id": 770 }, { "CommandName": "Get-PnPTeamsTag", "Rank": 1, - "Id": 771, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 771 }, { "CommandName": "Get-PnPTeamsTag", "Rank": 2, - "Id": 772, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 772 }, { "CommandName": "Get-PnPTeamsTeam", "Rank": 1, - "Id": 773, - "Command": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTeam", + "Id": 773 }, { "CommandName": "Get-PnPTeamsTeam", "Rank": 2, - "Id": 774, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Id": 774 }, { "CommandName": "Get-PnPTeamsTeam", "Rank": 3, - "Id": 775, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Id": 775 }, { "CommandName": "Get-PnPTeamsTeam", "Rank": 4, - "Id": 776, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Id": 776 }, { "CommandName": "Get-PnPTeamsTeam", "Rank": 5, - "Id": 777, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Id": 777 }, { "CommandName": "Get-PnPTeamsUser", "Rank": 1, - "Id": 778, - "Command": "Get-PnPTeamsUser -Team MyTeam" + "Command": "Get-PnPTeamsUser -Team MyTeam", + "Id": 778 }, { "CommandName": "Get-PnPTeamsUser", "Rank": 2, - "Id": 779, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Id": 779 }, { "CommandName": "Get-PnPTeamsUser", "Rank": 3, - "Id": 780, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Id": 780 }, { "CommandName": "Get-PnPTeamsUser", "Rank": 4, - "Id": 781, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Id": 781 }, { "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "Id": 782, - "Command": "Get-PnPTemporarilyDisableAppBar" + "Command": "Get-PnPTemporarilyDisableAppBar", + "Id": 782 }, { "CommandName": "Get-PnPTenant", "Rank": 1, - "Id": 783, - "Command": "Get-PnPTenant" + "Command": "Get-PnPTenant", + "Id": 783 }, { "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 784, - "Command": "Get-PnPTenantAppCatalogUrl" + "Command": "Get-PnPTenantAppCatalogUrl", + "Id": 784 }, { "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, - "Id": 785, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public" + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Id": 785 }, { "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, - "Id": 786, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public" + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Id": 786 }, { "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1, - "Id": 787, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public" + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Id": 787 }, { "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, - "Id": 788, - "Command": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTenantDeletedSite", + "Id": 788 }, { "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, - "Id": 789, - "Command": "Get-PnPTenantDeletedSite -Detailed" + "Command": "Get-PnPTenantDeletedSite -Detailed", + "Id": 789 }, { "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, - "Id": 790, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 790 }, { "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, - "Id": 791, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Id": 791 }, { "CommandName": "Get-PnPTenantDeletedSite", "Rank": 5, - "Id": 792, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Id": 792 }, { "CommandName": "Get-PnPTenantId", "Rank": 1, - "Id": 793, - "Command": "Get-PnPTenantId" + "Command": "Get-PnPTenantId", + "Id": 793 }, { "CommandName": "Get-PnPTenantId", "Rank": 2, - "Id": 794, - "Command": "Get-PnPTenantId contoso" + "Command": "Get-PnPTenantId contoso", + "Id": 794 }, { "CommandName": "Get-PnPTenantId", "Rank": 3, - "Id": 795, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Id": 795 }, { "CommandName": "Get-PnPTenantId", "Rank": 4, - "Id": 796, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Id": 796 }, { "CommandName": "Get-PnPTenantInfo", "Rank": 1, - "Id": 797, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Id": 797 }, { "CommandName": "Get-PnPTenantInfo", "Rank": 2, - "Id": 798, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Id": 798 }, { "CommandName": "Get-PnPTenantInfo", "Rank": 3, - "Id": 799, - "Command": "Get-PnPTenantInfo" + "Command": "Get-PnPTenantInfo", + "Id": 799 }, { "CommandName": "Get-PnPTenantInfo", "Rank": 4, - "Id": 800, - "Command": "Get-PnPTenantInfo -CurrentTenant" + "Command": "Get-PnPTenantInfo -CurrentTenant", + "Id": 800 }, { "CommandName": "Get-PnPTenantInstance", "Rank": 1, - "Id": 801, - "Command": "Get-PnPTenantInstance" + "Command": "Get-PnPTenantInstance", + "Id": 801 }, { "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "Id": 802, - "Command": "Get-PnPTenantRecycleBinItem" + "Command": "Get-PnPTenantRecycleBinItem", + "Id": 802 }, { "CommandName": "Get-PnPTenantSequence", "Rank": 1, - "Id": 803, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject" + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Id": 803 }, { "CommandName": "Get-PnPTenantSequence", "Rank": 2, - "Id": 804, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Id": 804 }, { "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1, - "Id": 805, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Id": 805 }, { "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2, - "Id": 806, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Id": 806 }, { "CommandName": "Get-PnPTenantSite", "Rank": 1, - "Id": 807, - "Command": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite", + "Id": 807 }, { "CommandName": "Get-PnPTenantSite", "Rank": 2, - "Id": 808, - "Command": "Get-PnPTenantSite -Detailed" + "Command": "Get-PnPTenantSite -Detailed", + "Id": 808 }, { "CommandName": "Get-PnPTenantSite", "Rank": 3, - "Id": 809, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites" + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Id": 809 }, { "CommandName": "Get-PnPTenantSite", "Rank": 4, - "Id": 810, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Id": 810 }, { "CommandName": "Get-PnPTenantSite", "Rank": 5, - "Id": 811, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Id": 811 }, { "CommandName": "Get-PnPTenantSite", "Rank": 6, - "Id": 812, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Id": 812 }, { "CommandName": "Get-PnPTenantSite", "Rank": 7, - "Id": 813, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Id": 813 }, { "CommandName": "Get-PnPTenantSite", "Rank": 8, - "Id": 814, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Id": 814 }, { "CommandName": "Get-PnPTenantSite", "Rank": 9, - "Id": 815, - "Command": "Get-PnPTenantSite -GroupIdDefined $true" + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Id": 815 }, { "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 816, - "Command": "Get-PnPTenantSyncClientRestriction" + "Command": "Get-PnPTenantSyncClientRestriction", + "Id": 816 }, { "CommandName": "Get-PnPTenantTemplate", "Rank": 1, - "Id": 817, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Id": 817 }, { "CommandName": "Get-PnPTenantTemplate", "Rank": 2, - "Id": 818, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "Id": 818 }, { "CommandName": "Get-PnPTenantTemplate", "Rank": 3, - "Id": 819, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Id": 819 }, { "CommandName": "Get-PnPTenantTheme", "Rank": 1, - "Id": 820, - "Command": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantTheme", + "Id": 820 }, { "CommandName": "Get-PnPTenantTheme", "Rank": 2, - "Id": 821, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 821 }, { "CommandName": "Get-PnPTenantTheme", "Rank": 3, - "Id": 822, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Id": 822 }, { "CommandName": "Get-PnPTerm", "Rank": 1, - "Id": 823, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 823 }, { "CommandName": "Get-PnPTerm", "Rank": 2, - "Id": 824, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 824 }, { "CommandName": "Get-PnPTerm", "Rank": 3, - "Id": 825, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 825 }, { "CommandName": "Get-PnPTerm", "Rank": 4, - "Id": 826, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "Id": 826 }, { "CommandName": "Get-PnPTerm", "Rank": 5, - "Id": 827, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Id": 827 }, { "CommandName": "Get-PnPTermGroup", "Rank": 1, - "Id": 828, - "Command": "Get-PnPTermGroup" + "Command": "Get-PnPTermGroup", + "Id": 828 }, { "CommandName": "Get-PnPTermGroup", "Rank": 2, - "Id": 829, - "Command": "Get-PnPTermGroup -Identity \"Departments\"" + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Id": 829 }, { "CommandName": "Get-PnPTermGroup", "Rank": 3, - "Id": 830, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Id": 830 }, { "CommandName": "Get-PnPTermLabel", "Rank": 1, - "Id": 831, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Id": 831 }, { "CommandName": "Get-PnPTermLabel", "Rank": 2, - "Id": 832, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Id": 832 }, { "CommandName": "Get-PnPTermLabel", "Rank": 3, - "Id": 833, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 833 }, { "CommandName": "Get-PnPTermSet", "Rank": 1, - "Id": 834, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Id": 834 }, { "CommandName": "Get-PnPTermSet", "Rank": 2, - "Id": 835, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Id": 835 }, { "CommandName": "Get-PnPTermSet", "Rank": 3, - "Id": 836, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Id": 836 }, { "CommandName": "Get-PnPTheme", "Rank": 1, - "Id": 837, - "Command": "Get-PnPTheme" + "Command": "Get-PnPTheme", + "Id": 837 }, { "CommandName": "Get-PnPTheme", "Rank": 2, - "Id": 838, - "Command": "Get-PnPTheme -DetectCurrentComposedLook" + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Id": 838 }, { "CommandName": "Get-PnPTimeZoneId", "Rank": 1, - "Id": 839, - "Command": "Get-PnPTimeZoneId" + "Command": "Get-PnPTimeZoneId", + "Id": 839 }, { "CommandName": "Get-PnPTimeZoneId", "Rank": 2, - "Id": 840, - "Command": "Get-PnPTimeZoneId -Match Stockholm" + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Id": 840 }, { "CommandName": "Get-PnPUnfurlLink", "Rank": 1, - "Id": 841, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "Id": 841 }, { "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1, - "Id": 842, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Id": 842 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1, - "Id": 843, - "Command": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPUPABulkImportStatus", + "Id": 843 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2, - "Id": 844, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Id": 844 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3, - "Id": 845, - "Command": "Get-PnPUPABulkImportStatus -JobId <guid>" + "Command": "Get-PnPUPABulkImportStatus -JobId <guid>", + "Id": 845 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4, - "Id": 846, - "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails" + "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails", + "Id": 846 }, { "CommandName": "Get-PnPUser", "Rank": 1, - "Id": 847, - "Command": "Get-PnPUser" + "Command": "Get-PnPUser", + "Id": 847 }, { "CommandName": "Get-PnPUser", "Rank": 2, - "Id": 848, - "Command": "Get-PnPUser -Identity 23" + "Command": "Get-PnPUser -Identity 23", + "Id": 848 }, { "CommandName": "Get-PnPUser", "Rank": 3, - "Id": 849, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Id": 849 }, { "CommandName": "Get-PnPUser", "Rank": 4, - "Id": 850, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Id": 850 }, { "CommandName": "Get-PnPUser", "Rank": 5, - "Id": 851, - "Command": "Get-PnPUser -WithRightsAssigned" + "Command": "Get-PnPUser -WithRightsAssigned", + "Id": 851 }, { "CommandName": "Get-PnPUser", "Rank": 6, - "Id": 852, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Id": 852 }, { "CommandName": "Get-PnPUser", "Rank": 7, - "Id": 853, - "Command": "Get-PnPUser -WithRightsAssignedDetailed" + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Id": 853 }, { "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, - "Id": 854, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Id": 854 }, { "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, - "Id": 855, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Id": 855 }, { "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, - "Id": 856, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Id": 856 }, { "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, - "Id": 857, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Id": 857 }, { "CommandName": "Get-PnPView", "Rank": 1, - "Id": 858, - "Command": "Get-PnPView -List \"Demo List\"" + "Command": "Get-PnPView -List \"Demo List\"", + "Id": 858 }, { "CommandName": "Get-PnPView", "Rank": 2, - "Id": 859, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Id": 859 }, { "CommandName": "Get-PnPView", "Rank": 3, - "Id": 860, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Id": 860 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Id": 861, - "Command": "Get-PnPVivaConnectionsDashboardACE" + "Command": "Get-PnPVivaConnectionsDashboardACE", + "Id": 861 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2, - "Id": 862, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 862 }, { "CommandName": "Get-PnPWeb", "Rank": 1, - "Id": 863, - "Command": "Get-PnPWeb" + "Command": "Get-PnPWeb", + "Id": 863 }, { "CommandName": "Get-PnPWebHeader", "Rank": 1, - "Id": 864, - "Command": "Get-PnPWebHeader" + "Command": "Get-PnPWebHeader", + "Id": 864 }, { "CommandName": "Get-PnPWebhookSubscription", "Rank": 1, - "Id": 865, - "Command": "Get-PnPWebhookSubscription -List MyList" + "Command": "Get-PnPWebhookSubscription -List MyList", + "Id": 865 }, { "CommandName": "Get-PnPWebPart", "Rank": 1, - "Id": 866, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "Id": 866 }, { "CommandName": "Get-PnPWebPart", "Rank": 2, - "Id": 867, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 867 }, { "CommandName": "Get-PnPWebPartProperty", "Rank": 1, - "Id": 868, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "Id": 868 }, { "CommandName": "Get-PnPWebPartProperty", "Rank": 2, - "Id": 869, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "Id": 869 }, { "CommandName": "Get-PnPWebPartXml", "Rank": 1, - "Id": 870, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 870 }, { "CommandName": "Get-PnPWebTemplates", "Rank": 1, - "Id": 871, - "Command": "Get-PnPWebTemplates" + "Command": "Get-PnPWebTemplates", + "Id": 871 }, { "CommandName": "Get-PnPWebTemplates", "Rank": 2, - "Id": 872, - "Command": "Get-PnPWebTemplates -LCID 1033" + "Command": "Get-PnPWebTemplates -LCID 1033", + "Id": 872 }, { "CommandName": "Get-PnPWebTemplates", "Rank": 3, - "Id": 873, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Id": 873 }, { "CommandName": "Get-PnPWikiPageContent", "Rank": 1, - "Id": 874, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Id": 874 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 875, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "Id": 875 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2, - "Id": 876, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects" + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", + "Id": 876 }, { "CommandName": "Grant-PnPHubSiteRights", "Rank": 1, - "Id": 877, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 877 }, { "CommandName": "Grant-PnPSiteDesignRights", "Rank": 1, - "Id": 878, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 878 }, { "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, - "Id": 879, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 879 }, { "CommandName": "Import-PnPTaxonomy", "Rank": 1, - "Id": 880, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Id": 880 }, { "CommandName": "Import-PnPTaxonomy", "Rank": 2, - "Id": 881, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Id": 881 }, { "CommandName": "Import-PnPTaxonomy", "Rank": 3, - "Id": 882, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Id": 882 }, { "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1, - "Id": 883, - "Command": "Import-PnPTermGroupFromXml -Xml $xml" + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Id": 883 }, { "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2, - "Id": 884, - "Command": "Import-PnPTermGroupFromXml -Path input.xml" + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Id": 884 }, { "CommandName": "Import-PnPTermSet", "Rank": 1, - "Id": 885, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "Id": 885 }, { "CommandName": "Import-PnPTermSet", "Rank": 2, - "Id": 886, - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", + "Id": 886 }, { "CommandName": "Import-PnPTermSet", "Rank": 3, - "Id": 887, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", + "Id": 887 }, { "CommandName": "Install-PnPApp", "Rank": 1, - "Id": 888, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 888 }, { "CommandName": "Install-PnPApp", "Rank": 2, - "Id": 889, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 889 }, { "CommandName": "Invoke-PnPGraphMethod", "Rank": 1, - "Id": 890, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "Id": 890 }, { "CommandName": "Invoke-PnPGraphMethod", "Rank": 2, - "Id": 891, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Id": 891 }, { "CommandName": "Invoke-PnPGraphMethod", "Rank": 3, - "Id": 892, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "Id": 892 }, { "CommandName": "Invoke-PnPGraphMethod", "Rank": 4, - "Id": 893, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "Id": 893 }, { "CommandName": "Invoke-PnPGraphMethod", "Rank": 5, - "Id": 894, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "Id": 894 }, { "CommandName": "Invoke-PnPGraphMethod", "Rank": 6, - "Id": 895, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", + "Id": 895 }, { "CommandName": "Invoke-PnPGraphMethod", "Rank": 7, - "Id": 896, - "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-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"", + "Id": 896 }, { "CommandName": "Invoke-PnPListDesign", "Rank": 1, - "Id": 897, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 897 }, { "CommandName": "Invoke-PnPListDesign", "Rank": 2, - "Id": 898, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 898 }, { "CommandName": "Invoke-PnPQuery", "Rank": 1, - "Id": 899, - "Command": "Invoke-PnPQuery -RetryCount 5" + "Command": "Invoke-PnPQuery -RetryCount 5", + "Id": 899 }, { "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, - "Id": 900, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 900 }, { "CommandName": "Invoke-PnPSiteDesign", "Rank": 2, - "Id": 901, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 901 }, { "CommandName": "Invoke-PnPSiteScript", "Rank": 1, - "Id": 902, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "Id": 902 }, { "CommandName": "Invoke-PnPSiteSwap", "Rank": 1, - "Id": 903, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "Id": 903 }, { "CommandName": "Invoke-PnPSiteSwap", "Rank": 2, - "Id": 904, - "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-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "Id": 904 }, { "CommandName": "Invoke-PnPSiteSwap", "Rank": 3, - "Id": 905, - "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-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", + "Id": 905 }, { "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1, - "Id": 906, - "Command": "Invoke-PnPSiteTemplate -Path template.xml" + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Id": 906 }, { "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, - "Id": 907, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "Id": 907 }, { "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, - "Id": 908, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 908 }, { "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4, - "Id": 909, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Id": 909 }, { "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5, - "Id": 910, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp" + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Id": 910 }, { "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6, - "Id": 911, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Id": 911 }, { "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7, - "Id": 912, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Id": 912 }, { "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8, - "Id": 913, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Id": 913 }, { "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1, - "Id": 914, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web" + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Id": 914 }, { "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, - "Id": 915, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Id": 915 }, { "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, - "Id": 916, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Id": 916 }, { "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3, - "Id": 917, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 917 }, { "CommandName": "Invoke-PnPWebAction", "Rank": 1, - "Id": 918, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Id": 918 }, { "CommandName": "Invoke-PnPWebAction", "Rank": 2, - "Id": 919, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Id": 919 }, { "CommandName": "Measure-PnPList", "Rank": 1, - "Id": 920, - "Command": "Measure-PnPList \"Documents\"" + "Command": "Measure-PnPList \"Documents\"", + "Id": 920 }, { "CommandName": "Measure-PnPList", "Rank": 2, - "Id": 921, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Id": 921 }, { "CommandName": "Measure-PnPWeb", "Rank": 1, - "Id": 922, - "Command": "Measure-PnPWeb" + "Command": "Measure-PnPWeb", + "Id": 922 }, { "CommandName": "Measure-PnPWeb", "Rank": 2, - "Id": 923, - "Command": "Measure-PnPWeb $web -Recursive" + "Command": "Measure-PnPWeb $web -Recursive", + "Id": 923 }, { "CommandName": "Merge-PnPTerm", "Rank": 1, - "Id": 924, - "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b" + "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", + "Id": 924 }, { "CommandName": "Move-PnPFile", "Rank": 1, - "Id": 925, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "Id": 925 }, { "CommandName": "Move-PnPFile", "Rank": 2, - "Id": 926, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "Id": 926 }, { "CommandName": "Move-PnPFile", "Rank": 3, - "Id": 927, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 927 }, { "CommandName": "Move-PnPFile", "Rank": 4, - "Id": 928, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 928 }, { "CommandName": "Move-PnPFolder", "Rank": 1, - "Id": 929, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Id": 929 }, { "CommandName": "Move-PnPFolder", "Rank": 2, - "Id": 930, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Id": 930 }, { "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1, - "Id": 931, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Id": 931 }, { "CommandName": "Move-PnPPageComponent", "Rank": 1, - "Id": 932, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "Id": 932 }, { "CommandName": "Move-PnPPageComponent", "Rank": 2, - "Id": 933, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "Id": 933 }, { "CommandName": "Move-PnPPageComponent", "Rank": 3, - "Id": 934, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "Id": 934 }, { "CommandName": "Move-PnPPageComponent", "Rank": 4, - "Id": 935, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Id": 935 }, { "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, - "Id": 936, - "Command": "Move-PnPRecycleBinItem" + "Command": "Move-PnPRecycleBinItem", + "Id": 936 }, { "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, - "Id": 937, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Id": 937 }, { "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, - "Id": 938, - "Command": "Move-PnPRecycleBinItem -Force" + "Command": "Move-PnPRecycleBinItem -Force", + "Id": 938 }, { "CommandName": "Move-PnPTerm", "Rank": 1, - "Id": 939, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", + "Id": 939 }, { "CommandName": "Move-PnPTerm", "Rank": 2, - "Id": 940, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "Id": 940 }, { "CommandName": "Move-PnPTerm", "Rank": 3, - "Id": 941, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "Id": 941 }, { "CommandName": "Move-PnPTermSet", "Rank": 1, - "Id": 942, - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", + "Id": 942 }, { "CommandName": "Move-PnPTermSet", "Rank": 2, - "Id": 943, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Id": 943 }, { "CommandName": "New-PnPAzureADGroup", "Rank": 1, - "Id": 944, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 944 }, { "CommandName": "New-PnPAzureADGroup", "Rank": 2, - "Id": 945, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "Id": 945 }, { "CommandName": "New-PnPAzureADGroup", "Rank": 3, - "Id": 946, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Id": 946 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, - "Id": 947, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Id": 947 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, - "Id": 948, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "Id": 948 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3, - "Id": 949, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "Id": 949 }, { "CommandName": "New-PnPAzureCertificate", "Rank": 1, - "Id": 950, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Id": 950 }, { "CommandName": "New-PnPAzureCertificate", "Rank": 2, - "Id": 951, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "Id": 951 }, { "CommandName": "New-PnPAzureCertificate", "Rank": 3, - "Id": 952, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Id": 952 }, { "CommandName": "New-PnPAzureCertificate", "Rank": 4, - "Id": 953, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", + "Id": 953 }, { "CommandName": "New-PnPContainerType", "Rank": 1, - "Id": 954, - "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"" + "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"", + "Id": 954 }, { "CommandName": "New-PnPGraphSubscription", "Rank": 1, - "Id": 955, - "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-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 955 }, { "CommandName": "New-PnPGraphSubscription", "Rank": 2, - "Id": 956, - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 956 }, { "CommandName": "New-PnPGroup", "Rank": 1, - "Id": 957, - "Command": "New-PnPGroup -Title \"My Site Users\"" + "Command": "New-PnPGroup -Title \"My Site Users\"", + "Id": 957 }, { "CommandName": "New-PnPList", "Rank": 1, - "Id": 958, - "Command": "New-PnPList -Title Announcements -Template Announcements" + "Command": "New-PnPList -Title Announcements -Template Announcements", + "Id": 958 }, { "CommandName": "New-PnPList", "Rank": 2, - "Id": 959, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Id": 959 }, { "CommandName": "New-PnPList", "Rank": 3, - "Id": 960, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Id": 960 }, { "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, - "Id": 961, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 961 }, { "CommandName": "New-PnPMicrosoft365Group", "Rank": 2, - "Id": 962, - "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 -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "Id": 962 }, { "CommandName": "New-PnPMicrosoft365Group", "Rank": 3, - "Id": 963, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "Id": 963 }, { "CommandName": "New-PnPMicrosoft365Group", "Rank": 4, - "Id": 964, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "Id": 964 }, { "CommandName": "New-PnPMicrosoft365Group", "Rank": 5, - "Id": 965, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 965 }, { "CommandName": "New-PnPMicrosoft365Group", "Rank": 6, - "Id": 966, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 966 }, { "CommandName": "New-PnPMicrosoft365Group", "Rank": 7, - "Id": 967, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "Id": 967 }, { "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 968, - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", + "Id": 968 }, { "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 2, - "Id": 969, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "Id": 969 }, { "CommandName": "New-PnPPersonalSite", "Rank": 1, - "Id": 970, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Id": 970 }, { "CommandName": "New-PnPPlannerPlan", "Rank": 1, - "Id": 971, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Id": 971 }, { "CommandName": "New-PnPSdnProvider", "Rank": 1, - "Id": 972, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Id": 972 }, { "CommandName": "New-PnPSite", "Rank": 1, - "Id": 973, - "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", + "Id": 973 }, { "CommandName": "New-PnPSite", "Rank": 2, - "Id": 974, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "Id": 974 }, { "CommandName": "New-PnPSite", "Rank": 3, - "Id": 975, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 975 }, { "CommandName": "New-PnPSite", "Rank": 4, - "Id": 976, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 976 }, { "CommandName": "New-PnPSite", "Rank": 5, - "Id": 977, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 977 }, { "CommandName": "New-PnPSite", "Rank": 6, - "Id": 978, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Id": 978 }, { "CommandName": "New-PnPSite", "Rank": 7, - "Id": 979, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Id": 979 }, { "CommandName": "New-PnPSite", "Rank": 8, - "Id": 980, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "Id": 980 }, { "CommandName": "New-PnPSite", "Rank": 9, - "Id": 981, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "Id": 981 }, { "CommandName": "New-PnPSite", "Rank": 10, - "Id": 982, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "Id": 982 }, { "CommandName": "New-PnPSite", "Rank": 11, - "Id": 983, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Id": 983 }, { "CommandName": "New-PnPSite", "Rank": 12, - "Id": 984, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 984 }, { "CommandName": "New-PnPSite", "Rank": 13, - "Id": 985, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 985 }, { "CommandName": "New-PnPSite", "Rank": 14, - "Id": 986, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 986 }, { "CommandName": "New-PnPSite", "Rank": 15, - "Id": 987, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -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 -Lcid 1040", + "Id": 987 }, { "CommandName": "New-PnPSite", "Rank": 16, - "Id": 988, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Id": 988 }, { "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 989, - "Command": "New-PnPSiteCollectionTermStore" + "Command": "New-PnPSiteCollectionTermStore", + "Id": 989 }, { "CommandName": "New-PnPSiteGroup", "Rank": 1, - "Id": 990, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "Id": 990 }, { "CommandName": "New-PnPSiteGroup", "Rank": 2, - "Id": 991, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Id": 991 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1, - "Id": 992, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Id": 992 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2, - "Id": 993, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Id": 993 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3, - "Id": 994, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "Id": 994 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4, - "Id": 995, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "Id": 995 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 5, - "Id": 996, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "Id": 996 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 6, - "Id": 997, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 997 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7, - "Id": 998, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Id": 998 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8, - "Id": 999, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Id": 999 }, { "CommandName": "New-PnPTeamsApp", "Rank": 1, - "Id": 1000, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Id": 1000 }, { "CommandName": "New-PnPTeamsTeam", "Rank": 1, - "Id": 1001, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Id": 1001 }, { "CommandName": "New-PnPTeamsTeam", "Rank": 2, - "Id": 1002, - "Command": "New-PnPTeamsTeam -GroupId $groupId" + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Id": 1002 }, { "CommandName": "New-PnPTeamsTeam", "Rank": 3, - "Id": 1003, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "Id": 1003 }, { "CommandName": "New-PnPTeamsTeam", "Rank": 4, - "Id": 1004, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 1004 }, { "CommandName": "New-PnPTeamsTeam", "Rank": 5, - "Id": 1005, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", + "Id": 1005 }, { "CommandName": "New-PnPTeamsTeam", "Rank": 6, - "Id": 1006, - "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-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": 1006 }, { "CommandName": "New-PnPTenantSite", "Rank": 1, - "Id": 1007, - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 1007 }, { "CommandName": "New-PnPTenantSite", "Rank": 2, - "Id": 1008, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 1008 }, { "CommandName": "New-PnPTerm", "Rank": 1, - "Id": 1009, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Id": 1009 }, { "CommandName": "New-PnPTerm", "Rank": 2, - "Id": 1010, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1010 }, { "CommandName": "New-PnPTermGroup", "Rank": 1, - "Id": 1011, - "Command": "New-PnPTermGroup -GroupName \"Countries\"" + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Id": 1011 }, { "CommandName": "New-PnPTermLabel", "Rank": 1, - "Id": 1012, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "Id": 1012 }, { "CommandName": "New-PnPTermSet", "Rank": 1, - "Id": 1013, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "Id": 1013 }, { "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, - "Id": 1014, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "Id": 1014 }, { "CommandName": "New-PnPUPABulkImportJob", "Rank": 2, - "Id": 1015, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", + "Id": 1015 }, { "CommandName": "New-PnPUser", "Rank": 1, - "Id": 1016, - "Command": "New-PnPUser -LoginName user@company.com" + "Command": "New-PnPUser -LoginName user@company.com", + "Id": 1016 }, { "CommandName": "New-PnPWeb", "Rank": 1, - "Id": 1017, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "Id": 1017 }, { "CommandName": "Publish-PnPApp", "Rank": 1, - "Id": 1018, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 1018 }, { "CommandName": "Publish-PnPApp", "Rank": 2, - "Id": 1019, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "Id": 1019 }, { "CommandName": "Publish-PnPCompanyApp", "Rank": 1, - "Id": 1020, - "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": "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": 1020 }, { "CommandName": "Publish-PnPContentType", "Rank": 1, - "Id": 1021, - "Command": "Publish-PnPContentType -ContentType 0x0101" + "Command": "Publish-PnPContentType -ContentType 0x0101", + "Id": 1021 }, { "CommandName": "Publish-PnPSyntexModel", "Rank": 1, - "Id": 1022, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 1022 }, { "CommandName": "Publish-PnPSyntexModel", "Rank": 2, - "Id": 1023, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 1023 }, { "CommandName": "Read-PnPSiteTemplate", "Rank": 1, - "Id": 1024, - "Command": "Read-PnPSiteTemplate -Path template.pnp" + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Id": 1024 }, { "CommandName": "Read-PnPSiteTemplate", "Rank": 2, - "Id": 1025, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Id": 1025 }, { "CommandName": "Read-PnPSiteTemplate", "Rank": 3, - "Id": 1026, - "Command": "Read-PnPSiteTemplate -Xml $xml" + "Command": "Read-PnPSiteTemplate -Xml $xml", + "Id": 1026 }, { "CommandName": "Read-PnPTenantTemplate", "Rank": 1, - "Id": 1027, - "Command": "Read-PnPTenantTemplate -Path template.pnp" + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Id": 1027 }, { "CommandName": "Register-PnPAppCatalogSite", "Rank": 1, - "Id": 1028, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "Id": 1028 }, { "CommandName": "Register-PnPAzureADApp", "Rank": 1, - "Id": 1029, - "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 -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "Id": 1029 }, { "CommandName": "Register-PnPAzureADApp", "Rank": 2, - "Id": 1030, - "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\")", + "Id": 1030 }, { "CommandName": "Register-PnPAzureADApp", "Rank": 3, - "Id": 1031, - "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-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": 1031 }, { "CommandName": "Register-PnPAzureADApp", "Rank": 4, - "Id": 1032, - "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-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": 1032 }, { "CommandName": "Register-PnPAzureADApp", "Rank": 5, - "Id": 1033, - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "Id": 1033 }, { "CommandName": "Register-PnPAzureADApp", "Rank": 6, - "Id": 1034, - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "Id": 1034 }, { "CommandName": "Register-PnPAzureADApp", "Rank": 7, - "Id": 1035, - "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-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": 1035 }, { "CommandName": "Register-PnPHubSite", "Rank": 1, - "Id": 1036, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1036 }, { "CommandName": "Register-PnPHubSite", "Rank": 2, - "Id": 1037, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Id": 1037 }, { "CommandName": "Register-PnPManagementShellAccess", "Rank": 1, - "Id": 1038, - "Command": "Register-PnPManagementShellAccess" + "Command": "Register-PnPManagementShellAccess", + "Id": 1038 }, { "CommandName": "Register-PnPManagementShellAccess", "Rank": 2, - "Id": 1039, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Id": 1039 }, { "CommandName": "Register-PnPManagementShellAccess", "Rank": 3, - "Id": 1040, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Id": 1040 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, - "Id": 1041, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Id": 1041 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, - "Id": 1042, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Id": 1042 }, { "CommandName": "Remove-PnPAlert", "Rank": 1, - "Id": 1043, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "Id": 1043 }, { "CommandName": "Remove-PnPAlert", "Rank": 2, - "Id": 1044, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 1044 }, { "CommandName": "Remove-PnPApp", "Rank": 1, - "Id": 1045, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1045 }, { "CommandName": "Remove-PnPApp", "Rank": 2, - "Id": 1046, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1046 }, { "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, - "Id": 1047, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1047 }, { "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, - "Id": 1048, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1048 }, { "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, - "Id": 1049, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Id": 1049 }, { "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, - "Id": 1050, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1050 }, { "CommandName": "Remove-PnPAzureADApp", "Rank": 1, - "Id": 1051, - "Command": "Remove-PnPAzureADApp -Identity MyApp" + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Id": 1051 }, { "CommandName": "Remove-PnPAzureADApp", "Rank": 2, - "Id": 1052, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 1052 }, { "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, - "Id": 1053, - "Command": "Remove-PnPAzureADGroup -Identity $groupId" + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Id": 1053 }, { "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, - "Id": 1054, - "Command": "Remove-PnPAzureADGroup -Identity $group" + "Command": "Remove-PnPAzureADGroup -Identity $group", + "Id": 1054 }, { "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, - "Id": 1055, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1055 }, { "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1, - "Id": 1056, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1056 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, - "Id": 1057, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "Id": 1057 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, - "Id": 1058, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Id": 1058 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3, - "Id": 1059, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 1059 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4, - "Id": 1060, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 1060 }, { "CommandName": "Remove-PnPContainer", "Rank": 1, - "Id": 1061, - "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" + "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "Id": 1061 }, { "CommandName": "Remove-PnPContainer", "Rank": 2, - "Id": 1062, - "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" + "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", + "Id": 1062 + }, + { + "CommandName": "Remove-PnPContainerType", + "Rank": 1, + "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6", + "Id": 1063 }, { "CommandName": "Remove-PnPContentType", "Rank": 1, - "Id": 1063, - "Command": "Remove-PnPContentType -Identity \"Project Document\"" + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Id": 1064 }, { "CommandName": "Remove-PnPContentType", "Rank": 2, - "Id": 1064, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Id": 1065 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1, - "Id": 1065, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 1066 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2, - "Id": 1066, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 1067 }, { "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, - "Id": 1067, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Id": 1068 }, { "CommandName": "Remove-PnPCustomAction", "Rank": 1, - "Id": 1068, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1069 }, { "CommandName": "Remove-PnPCustomAction", "Rank": 2, - "Id": 1069, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1070 }, { "CommandName": "Remove-PnPCustomAction", "Rank": 3, - "Id": 1070, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Id": 1071 }, { "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1, - "Id": 1071, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1072 }, { "CommandName": "Remove-PnPEventReceiver", "Rank": 1, - "Id": 1072, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1073 }, { "CommandName": "Remove-PnPEventReceiver", "Rank": 2, - "Id": 1073, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1074 }, { "CommandName": "Remove-PnPEventReceiver", "Rank": 3, - "Id": 1074, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Id": 1075 }, { "CommandName": "Remove-PnPEventReceiver", "Rank": 4, - "Id": 1075, - "Command": "Remove-PnPEventReceiver -List ProjectList" + "Command": "Remove-PnPEventReceiver -List ProjectList", + "Id": 1076 }, { "CommandName": "Remove-PnPEventReceiver", "Rank": 5, - "Id": 1076, - "Command": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver", + "Id": 1077 }, { "CommandName": "Remove-PnPEventReceiver", "Rank": 6, - "Id": 1077, - "Command": "Remove-PnPEventReceiver -Scope Site" + "Command": "Remove-PnPEventReceiver -Scope Site", + "Id": 1078 }, { "CommandName": "Remove-PnPEventReceiver", "Rank": 7, - "Id": 1078, - "Command": "Remove-PnPEventReceiver -Scope Web" + "Command": "Remove-PnPEventReceiver -Scope Web", + "Id": 1079 }, { "CommandName": "Remove-PnPEventReceiver", "Rank": 8, - "Id": 1079, - "Command": "Remove-PnPEventReceiver -Scope All" + "Command": "Remove-PnPEventReceiver -Scope All", + "Id": 1080 }, { "CommandName": "Remove-PnPField", "Rank": 1, - "Id": 1080, - "Command": "Remove-PnPField -Identity \"Speakers\"" + "Command": "Remove-PnPField -Identity \"Speakers\"", + "Id": 1081 }, { "CommandName": "Remove-PnPField", "Rank": 2, - "Id": 1081, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 1082 }, { "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1, - "Id": 1082, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 1083 }, { "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2, - "Id": 1083, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Id": 1084 }, { "CommandName": "Remove-PnPFile", "Rank": 1, - "Id": 1084, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Id": 1085 }, { "CommandName": "Remove-PnPFile", "Rank": 2, - "Id": 1085, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Id": 1086 }, { "CommandName": "Remove-PnPFile", "Rank": 3, - "Id": 1086, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Id": 1087 }, { "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, - "Id": 1087, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Id": 1088 }, { "CommandName": "Remove-PnPFileSharingLink", "Rank": 1, - "Id": 1088, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 1089 }, { "CommandName": "Remove-PnPFileSharingLink", "Rank": 2, - "Id": 1089, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Id": 1090 }, { "CommandName": "Remove-PnPFileVersion", "Rank": 1, - "Id": 1090, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1091 }, { "CommandName": "Remove-PnPFileVersion", "Rank": 2, - "Id": 1091, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1092 }, { "CommandName": "Remove-PnPFileVersion", "Rank": 3, - "Id": 1092, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "Id": 1093 }, { "CommandName": "Remove-PnPFlowOwner", "Rank": 1, - "Id": 1093, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "Id": 1094 }, { "CommandName": "Remove-PnPFlowOwner", "Rank": 2, - "Id": 1094, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "Id": 1095 }, { "CommandName": "Remove-PnPFlowOwner", "Rank": 3, - "Id": 1095, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "Id": 1096 }, { "CommandName": "Remove-PnPFlowOwner", "Rank": 4, - "Id": 1096, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "Id": 1097 }, { "CommandName": "Remove-PnPFolder", "Rank": 1, - "Id": 1097, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 1098 }, { "CommandName": "Remove-PnPFolder", "Rank": 2, - "Id": 1098, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Id": 1099 }, { "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, - "Id": 1099, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 1100 }, { "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, - "Id": 1100, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Id": 1101 }, { "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, - "Id": 1101, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Id": 1102 }, { "CommandName": "Remove-PnPGroup", "Rank": 1, - "Id": 1102, - "Command": "Remove-PnPGroup -Identity \"My Users\"" + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Id": 1103 }, { "CommandName": "Remove-PnPGroupMember", "Rank": 1, - "Id": 1103, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 1104 }, { "CommandName": "Remove-PnPHomeSite", "Rank": 1, - "Id": 1104, - "Command": "Remove-PnPHomeSite" + "Command": "Remove-PnPHomeSite", + "Id": 1105 }, { "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, - "Id": 1105, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1106 }, { "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1, - "Id": 1106, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Id": 1107 }, { "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2, - "Id": 1107, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Id": 1108 }, { "CommandName": "Remove-PnPIndexedProperty", "Rank": 1, - "Id": 1108, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Id": 1109 }, { "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, - "Id": 1109, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Id": 1110 }, { "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2, - "Id": 1110, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Id": 1111 }, { "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3, - "Id": 1111, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Id": 1112 }, { "CommandName": "Remove-PnPJavaScriptLink", "Rank": 4, - "Id": 1112, - "Command": "Remove-PnPJavaScriptLink -Scope Site" + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Id": 1113 }, { "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5, - "Id": 1113, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Id": 1114 }, { "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "Id": 1114, - "Command": "Remove-PnPKnowledgeHubSite" + "Command": "Remove-PnPKnowledgeHubSite", + "Id": 1115 }, { "CommandName": "Remove-PnPList", "Rank": 1, - "Id": 1115, - "Command": "Remove-PnPList -Identity Announcements" + "Command": "Remove-PnPList -Identity Announcements", + "Id": 1116 }, { "CommandName": "Remove-PnPList", "Rank": 2, - "Id": 1116, - "Command": "Remove-PnPList -Identity Announcements -Force" + "Command": "Remove-PnPList -Identity Announcements -Force", + "Id": 1117 }, { "CommandName": "Remove-PnPList", "Rank": 3, - "Id": 1117, - "Command": "Remove-PnPList -Identity Announcements -Recycle" + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Id": 1118 }, { "CommandName": "Remove-PnPList", "Rank": 4, - "Id": 1118, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Id": 1119 }, { "CommandName": "Remove-PnPListDesign", "Rank": 1, - "Id": 1119, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1120 }, { "CommandName": "Remove-PnPListItem", "Rank": 1, - "Id": 1120, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Id": 1121 }, { "CommandName": "Remove-PnPListItem", "Rank": 2, - "Id": 1121, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Id": 1122 }, { "CommandName": "Remove-PnPListItem", "Rank": 3, - "Id": 1122, - "Command": "Remove-PnPListItem -List \"Demo List\"" + "Command": "Remove-PnPListItem -List \"Demo List\"", + "Id": 1123 }, { "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, - "Id": 1123, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "Id": 1124 }, { "CommandName": "Remove-PnPListItemAttachment", "Rank": 2, - "Id": 1124, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "Id": 1125 }, { "CommandName": "Remove-PnPListItemAttachment", "Rank": 3, - "Id": 1125, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "Id": 1126 }, { "CommandName": "Remove-PnPListItemAttachment", "Rank": 4, - "Id": 1126, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Id": 1127 }, { "CommandName": "Remove-PnPListItemAttachment", "Rank": 5, - "Id": 1127, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Id": 1128 }, { "CommandName": "Remove-PnPListItemVersion", "Rank": 1, - "Id": 1128, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1129 }, { "CommandName": "Remove-PnPListItemVersion", "Rank": 2, - "Id": 1129, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1130 }, { "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, - "Id": 1130, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Id": 1131 }, { "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, - "Id": 1131, - "Command": "Remove-PnPMicrosoft365Group -Identity $group" + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Id": 1132 }, { "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, - "Id": 1132, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1133 }, { "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, - "Id": 1133, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1134 }, { "CommandName": "Remove-PnPMicrosoft365GroupPhoto", "Rank": 1, - "Id": 1134, - "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"" + "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", + "Id": 1135 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 1135, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Id": 1136 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2, - "Id": 1136, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Id": 1137 }, { "CommandName": "Remove-PnPNavigationNode", "Rank": 1, - "Id": 1137, - "Command": "Remove-PnPNavigationNode -Identity 1032" + "Command": "Remove-PnPNavigationNode -Identity 1032", + "Id": 1138 }, { "CommandName": "Remove-PnPNavigationNode", "Rank": 2, - "Id": 1138, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Id": 1139 }, { "CommandName": "Remove-PnPNavigationNode", "Rank": 3, - "Id": 1139, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Id": 1140 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, - "Id": 1140, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Id": 1141 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, - "Id": 1141, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Id": 1142 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, - "Id": 1142, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Id": 1143 }, { "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, - "Id": 1143, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1144 }, { "CommandName": "Remove-PnPPage", "Rank": 1, - "Id": 1144, - "Command": "Remove-PnPPage -Identity \"MyPage\"" + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Id": 1145 }, { "CommandName": "Remove-PnPPage", "Rank": 2, - "Id": 1145, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Id": 1146 }, { "CommandName": "Remove-PnPPage", "Rank": 3, - "Id": 1146, - "Command": "Remove-PnPPage $page" + "Command": "Remove-PnPPage $page", + "Id": 1147 }, { "CommandName": "Remove-PnPPage", "Rank": 4, - "Id": 1147, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Id": 1148 }, { "CommandName": "Remove-PnPPageComponent", "Rank": 1, - "Id": 1148, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1149 }, { "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, - "Id": 1149, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Id": 1150 }, { "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, - "Id": 1150, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Id": 1151 }, { "CommandName": "Remove-PnPPlannerRoster", "Rank": 1, - "Id": 1151, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 1152 }, { "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1, - "Id": 1152, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1153 }, { "CommandName": "Remove-PnPPlannerTask", "Rank": 1, - "Id": 1153, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Id": 1154 }, { "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, - "Id": 1154, - "Command": "Remove-PnPPropertyBagValue -Key MyKey" + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Id": 1155 }, { "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, - "Id": 1155, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Id": 1156 }, { "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3, - "Id": 1156, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Id": 1157 }, { "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, - "Id": 1157, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 1158 }, { "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, - "Id": 1158, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Id": 1159 }, { "CommandName": "Remove-PnPSdnProvider", "Rank": 1, - "Id": 1159, - "Command": "Remove-PnPSdnProvider -Confirm:false" + "Command": "Remove-PnPSdnProvider -Confirm:false", + "Id": 1160 }, { "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, - "Id": 1160, - "Command": "Remove-PnPSearchConfiguration -Configuration $config" + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Id": 1161 }, { "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, - "Id": 1161, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1162 }, { "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3, - "Id": 1162, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1163 }, { "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4, - "Id": 1163, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1164 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, - "Id": 1164, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1165 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, - "Id": 1165, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1166 }, { "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 1166, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 1167 }, { "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 1167, - "Command": "Remove-PnPSiteCollectionTermStore" + "Command": "Remove-PnPSiteCollectionTermStore", + "Id": 1168 }, { "CommandName": "Remove-PnPSiteDesign", "Rank": 1, - "Id": 1168, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1169 }, { "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, - "Id": 1169, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1170 }, { "CommandName": "Remove-PnPSiteGroup", "Rank": 1, - "Id": 1170, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1171 }, { "CommandName": "Remove-PnPSiteGroup", "Rank": 2, - "Id": 1171, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Id": 1172 }, { "CommandName": "Remove-PnPSiteScript", "Rank": 1, - "Id": 1172, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1173 }, { "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, - "Id": 1173, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 1174 }, { "CommandName": "Remove-PnPStorageEntity", "Rank": 1, - "Id": 1174, - "Command": "Remove-PnPStorageEntity -Key MyKey" + "Command": "Remove-PnPStorageEntity -Key MyKey", + "Id": 1175 }, { "CommandName": "Remove-PnPStorageEntity", "Rank": 2, - "Id": 1175, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 1176 }, { "CommandName": "Remove-PnPStoredCredential", "Rank": 1, - "Id": 1176, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Id": 1177 }, { "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, - "Id": 1177, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Id": 1178 }, { "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2, - "Id": 1178, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Id": 1179 }, { "CommandName": "Remove-PnPTeamsApp", "Rank": 1, - "Id": 1179, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Id": 1180 }, { "CommandName": "Remove-PnPTeamsApp", "Rank": 2, - "Id": 1180, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Id": 1181 }, { "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, - "Id": 1181, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "Id": 1182 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1, - "Id": 1182, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "Id": 1183 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2, - "Id": 1183, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 1184 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3, - "Id": 1184, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "Id": 1185 }, { "CommandName": "Remove-PnPTeamsTab", "Rank": 1, - "Id": 1185, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "Id": 1186 }, { "CommandName": "Remove-PnPTeamsTab", "Rank": 2, - "Id": 1186, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "Id": 1187 }, { "CommandName": "Remove-PnPTeamsTab", "Rank": 3, - "Id": 1187, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", + "Id": 1188 }, { "CommandName": "Remove-PnPTeamsTag", "Rank": 1, - "Id": 1188, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 1189 }, { "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, - "Id": 1189, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 1190 }, { "CommandName": "Remove-PnPTeamsTeam", "Rank": 2, - "Id": 1190, - "Command": "Remove-PnPTeamsTeam -Identity testteam" + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Id": 1191 }, { "CommandName": "Remove-PnPTeamsUser", "Rank": 1, - "Id": 1191, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Id": 1192 }, { "CommandName": "Remove-PnPTeamsUser", "Rank": 2, - "Id": 1192, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1193 }, { "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, - "Id": 1193, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 1194 }, { "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1, - "Id": 1194, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1195 }, { "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2, - "Id": 1195, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1196 }, { "CommandName": "Remove-PnPTenantSite", "Rank": 1, - "Id": 1196, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1197 }, { "CommandName": "Remove-PnPTenantSite", "Rank": 2, - "Id": 1197, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "Id": 1198 }, { "CommandName": "Remove-PnPTenantSite", "Rank": 3, - "Id": 1198, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Id": 1199 }, { "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 1199, - "Command": "Remove-PnPTenantSyncClientRestriction" + "Command": "Remove-PnPTenantSyncClientRestriction", + "Id": 1200 }, { "CommandName": "Remove-PnPTenantTheme", "Rank": 1, - "Id": 1200, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 1201 }, { "CommandName": "Remove-PnPTerm", "Rank": 1, - "Id": 1201, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1202 }, { "CommandName": "Remove-PnPTerm", "Rank": 2, - "Id": 1202, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1203 }, { "CommandName": "Remove-PnPTermGroup", "Rank": 1, - "Id": 1203, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1204 }, { "CommandName": "Remove-PnPTermGroup", "Rank": 2, - "Id": 1204, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Id": 1205 }, { "CommandName": "Remove-PnPTermGroup", "Rank": 3, - "Id": 1205, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Id": 1206 }, { "CommandName": "Remove-PnPTermLabel", "Rank": 1, - "Id": 1206, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "Id": 1207 }, { "CommandName": "Remove-PnPTermLabel", "Rank": 2, - "Id": 1207, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1208 }, { "CommandName": "Remove-PnPUser", "Rank": 1, - "Id": 1208, - "Command": "Remove-PnPUser -Identity 23" + "Command": "Remove-PnPUser -Identity 23", + "Id": 1209 }, { "CommandName": "Remove-PnPUser", "Rank": 2, - "Id": 1209, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "Id": 1210 }, { "CommandName": "Remove-PnPUser", "Rank": 3, - "Id": 1210, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "Id": 1211 }, { "CommandName": "Remove-PnPUserInfo", "Rank": 1, - "Id": 1211, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Id": 1212 }, { "CommandName": "Remove-PnPUserProfile", "Rank": 1, - "Id": 1212, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com" + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Id": 1213 }, { "CommandName": "Remove-PnPView", "Rank": 1, - "Id": 1213, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Id": 1214 }, { "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Id": 1214, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 1215 }, { "CommandName": "Remove-PnPWeb", "Rank": 1, - "Id": 1215, - "Command": "Remove-PnPWeb -Identity projectA" + "Command": "Remove-PnPWeb -Identity projectA", + "Id": 1216 }, { "CommandName": "Remove-PnPWeb", "Rank": 2, - "Id": 1216, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Id": 1217 }, { "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, - "Id": 1217, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "Id": 1218 }, { "CommandName": "Remove-PnPWebPart", "Rank": 1, - "Id": 1218, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1219 }, { "CommandName": "Remove-PnPWebPart", "Rank": 2, - "Id": 1219, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Id": 1220 }, { "CommandName": "Remove-PnPWikiPage", "Rank": 1, - "Id": 1220, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Id": 1221 }, { "CommandName": "Rename-PnPFile", "Rank": 1, - "Id": 1221, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Id": 1222 }, { "CommandName": "Rename-PnPFile", "Rank": 2, - "Id": 1222, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "Id": 1223 }, { "CommandName": "Rename-PnPFile", "Rank": 3, - "Id": 1223, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Id": 1224 }, { "CommandName": "Rename-PnPFolder", "Rank": 1, - "Id": 1224, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Id": 1225 }, { "CommandName": "Repair-PnPSite", "Rank": 1, - "Id": 1225, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1226 }, { "CommandName": "Repair-PnPSite", "Rank": 2, - "Id": 1226, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1227 }, { "CommandName": "Request-PnPAccessToken", "Rank": 1, - "Id": 1227, - "Command": "Request-PnPAccessToken" + "Command": "Request-PnPAccessToken", + "Id": 1228 }, { "CommandName": "Request-PnPAccessToken", "Rank": 2, - "Id": 1228, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Id": 1229 }, { "CommandName": "Request-PnPAccessToken", "Rank": 3, - "Id": 1229, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "Id": 1230 }, { "CommandName": "Request-PnPAccessToken", "Rank": 4, - "Id": 1230, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "Id": 1231 }, { "CommandName": "Request-PnPPersonalSite", "Rank": 1, - "Id": 1231, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Id": 1232 }, { "CommandName": "Request-PnPPersonalSite", "Rank": 2, - "Id": 1232, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Id": 1233 }, { "CommandName": "Request-PnPReIndexList", "Rank": 1, - "Id": 1233, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"" + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Id": 1234 }, { "CommandName": "Request-PnPReIndexWeb", "Rank": 1, - "Id": 1234, - "Command": "Request-PnPReIndexWeb" + "Command": "Request-PnPReIndexWeb", + "Id": 1235 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, - "Id": 1235, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Id": 1236 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2, - "Id": 1236, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Id": 1237 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3, - "Id": 1237, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Id": 1238 }, { "CommandName": "Reset-PnPFileVersion", "Rank": 1, - "Id": 1238, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "Id": 1239 }, { "CommandName": "Reset-PnPFileVersion", "Rank": 2, - "Id": 1239, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Id": 1240 }, { "CommandName": "Reset-PnPLabel", "Rank": 1, - "Id": 1240, - "Command": "Reset-PnPLabel -List \"Demo List\"" + "Command": "Reset-PnPLabel -List \"Demo List\"", + "Id": 1241 }, { "CommandName": "Reset-PnPLabel", "Rank": 2, - "Id": 1241, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Id": 1242 }, { "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "Id": 1242, - "Command": "Reset-PnPMicrosoft365GroupExpiration" + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1243 }, { "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1, - "Id": 1243, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Id": 1244 }, { "CommandName": "Resolve-PnPFolder", "Rank": 1, - "Id": 1244, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Id": 1245 + }, + { + "CommandName": "Restore-PnPDeletedContainer", + "Rank": 1, + "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "Id": 1246 }, { "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, - "Id": 1245, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1247 }, { "CommandName": "Restore-PnPFileVersion", "Rank": 1, - "Id": 1246, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1248 }, { "CommandName": "Restore-PnPFileVersion", "Rank": 2, - "Id": 1247, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Id": 1249 }, { "CommandName": "Restore-PnPFileVersion", "Rank": 3, - "Id": 1248, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1250 }, { "CommandName": "Restore-PnPListItemVersion", "Rank": 1, - "Id": 1249, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1251 }, { "CommandName": "Restore-PnPListItemVersion", "Rank": 2, - "Id": 1250, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1252 }, { "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, - "Id": 1251, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 1253 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, - "Id": 1252, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1254 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2, - "Id": 1253, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 1255 }, { "CommandName": "Restore-PnPTenantSite", "Rank": 1, - "Id": 1254, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1256 }, { "CommandName": "Restore-PnPTenantSite", "Rank": 2, - "Id": 1255, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1257 }, { "CommandName": "Restore-PnPTenantSite", "Rank": 3, - "Id": 1256, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Id": 1258 }, { "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 1257, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Id": 1259 }, { "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1, - "Id": 1258, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1260 }, { "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1, - "Id": 1259, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1261 }, { "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, - "Id": 1260, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 1262 }, { "CommandName": "Revoke-PnPUserSession", "Rank": 1, - "Id": 1261, - "Command": "Revoke-PnPUserSession -User user1@contoso.com" + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Id": 1263 }, { "CommandName": "Save-PnPPageConversionLog", "Rank": 1, - "Id": 1262, - "Command": "Save-PnPPageConversionLog" + "Command": "Save-PnPPageConversionLog", + "Id": 1264 }, { "CommandName": "Save-PnPSiteTemplate", "Rank": 1, - "Id": 1263, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Id": 1265 }, { "CommandName": "Save-PnPTenantTemplate", "Rank": 1, - "Id": 1264, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "Id": 1266 }, { "CommandName": "Send-PnPMail", "Rank": 1, - "Id": 1265, - "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\"", + "Id": 1267 }, { "CommandName": "Send-PnPMail", "Rank": 2, - "Id": 1266, - "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": "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": 1268 }, { "CommandName": "Send-PnPMail", "Rank": 3, - "Id": 1267, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Id": 1269 }, { "CommandName": "Send-PnPMail", "Rank": 4, - "Id": 1268, - "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": "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": 1270 }, { "CommandName": "Send-PnPMail", "Rank": 5, - "Id": 1269, - "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": "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": 1271 }, { "CommandName": "Send-PnPMail", "Rank": 6, - "Id": 1270, - "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": "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": 1272 }, { "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1, - "Id": 1271, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Id": 1273 }, { "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, - "Id": 1272, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1274 }, { "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2, - "Id": 1273, - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "Id": 1275 }, { "CommandName": "Set-PnPAppSideLoading", "Rank": 1, - "Id": 1274, - "Command": "Set-PnPAppSideLoading -On" + "Command": "Set-PnPAppSideLoading -On", + "Id": 1276 }, { "CommandName": "Set-PnPAppSideLoading", "Rank": 2, - "Id": 1275, - "Command": "Set-PnPAppSideLoading -Off" + "Command": "Set-PnPAppSideLoading -Off", + "Id": 1277 }, { "CommandName": "Set-PnPAuditing", "Rank": 1, - "Id": 1276, - "Command": "Set-PnPAuditing -EnableAll" + "Command": "Set-PnPAuditing -EnableAll", + "Id": 1278 }, { "CommandName": "Set-PnPAuditing", "Rank": 2, - "Id": 1277, - "Command": "Set-PnPAuditing -DisableAll" + "Command": "Set-PnPAuditing -DisableAll", + "Id": 1279 }, { "CommandName": "Set-PnPAuditing", "Rank": 3, - "Id": 1278, - "Command": "Set-PnPAuditing -RetentionTime 7" + "Command": "Set-PnPAuditing -RetentionTime 7", + "Id": 1280 }, { "CommandName": "Set-PnPAuditing", "Rank": 4, - "Id": 1279, - "Command": "Set-PnPAuditing -TrimAuditLog" + "Command": "Set-PnPAuditing -TrimAuditLog", + "Id": 1281 }, { "CommandName": "Set-PnPAuditing", "Rank": 5, - "Id": 1280, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Id": 1282 }, { "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1, - "Id": 1281, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Id": 1283 }, { "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 1282, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Id": 1284 }, { "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, - "Id": 1283, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Id": 1285 }, { "CommandName": "Set-PnPAzureADGroup", "Rank": 1, - "Id": 1284, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1286 }, { "CommandName": "Set-PnPAzureADGroup", "Rank": 2, - "Id": 1285, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1287 }, { "CommandName": "Set-PnPAzureADGroup", "Rank": 3, - "Id": 1286, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "Id": 1288 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1, - "Id": 1287, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "Id": 1289 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2, - "Id": 1288, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Id": 1290 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3, - "Id": 1289, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Id": 1291 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1, - "Id": 1290, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Id": 1292 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "Id": 1291, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Id": 1293 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "Id": 1292, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Id": 1294 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, - "Id": 1293, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Id": 1295 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, - "Id": 1294, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Id": 1296 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, - "Id": 1295, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Id": 1297 }, { "CommandName": "Set-PnPContentType", "Rank": 1, - "Id": 1296, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1298 }, { "CommandName": "Set-PnPContentType", "Rank": 2, - "Id": 1297, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "Id": 1299 }, { "CommandName": "Set-PnPContentType", "Rank": 3, - "Id": 1298, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1300 }, { "CommandName": "Set-PnPContentType", "Rank": 4, - "Id": 1299, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1301 }, { "CommandName": "Set-PnPContentType", "Rank": 5, - "Id": 1300, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1302 }, { "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, - "Id": 1301, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "Id": 1303 }, { "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2, - "Id": 1302, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "Id": 1304 }, { "CommandName": "Set-PnPDefaultColumnValues", "Rank": 3, - "Id": 1303, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Id": 1305 }, { "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4, - "Id": 1304, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Id": 1306 }, { "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, - "Id": 1305, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Id": 1307 }, { "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1, - "Id": 1306, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Id": 1308 }, { "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2, - "Id": 1307, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Id": 1309 }, { "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3, - "Id": 1308, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Id": 1310 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, - "Id": 1309, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Id": 1311 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2, - "Id": 1310, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1312 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3, - "Id": 1311, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1313 }, { "CommandName": "Set-PnPDocumentSetField", "Rank": 1, - "Id": 1312, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "Id": 1314 }, { "CommandName": "Set-PnPDocumentSetField", "Rank": 2, - "Id": 1313, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "Id": 1315 }, { "CommandName": "Set-PnPField", "Rank": 1, - "Id": 1314, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "Id": 1316 }, { "CommandName": "Set-PnPField", "Rank": 2, - "Id": 1315, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "Id": 1317 }, { "CommandName": "Set-PnPField", "Rank": 3, - "Id": 1316, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Id": 1318 }, { "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, - "Id": 1317, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Id": 1319 }, { "CommandName": "Set-PnPFileCheckedIn", "Rank": 2, - "Id": 1318, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Id": 1320 }, { "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, - "Id": 1319, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "Id": 1321 }, { "CommandName": "Set-PnPFolderPermission", "Rank": 1, - "Id": 1320, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1322 }, { "CommandName": "Set-PnPFolderPermission", "Rank": 2, - "Id": 1321, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1323 }, { "CommandName": "Set-PnPFolderPermission", "Rank": 3, - "Id": 1322, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1324 }, { "CommandName": "Set-PnPFooter", "Rank": 1, - "Id": 1323, - "Command": "Set-PnPFooter -Enabled:$true" + "Command": "Set-PnPFooter -Enabled:$true", + "Id": 1325 }, { "CommandName": "Set-PnPFooter", "Rank": 2, - "Id": 1324, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Id": 1326 }, { "CommandName": "Set-PnPFooter", "Rank": 3, - "Id": 1325, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Id": 1327 }, { "CommandName": "Set-PnPFooter", "Rank": 4, - "Id": 1326, - "Command": "Set-PnPFooter -LogoUrl \"\"" + "Command": "Set-PnPFooter -LogoUrl \"\"", + "Id": 1328 }, { "CommandName": "Set-PnPGraphSubscription", "Rank": 1, - "Id": 1327, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "Id": 1329 }, { "CommandName": "Set-PnPGroup", "Rank": 1, - "Id": 1328, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Id": 1330 }, { "CommandName": "Set-PnPGroup", "Rank": 2, - "Id": 1329, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Id": 1331 }, { "CommandName": "Set-PnPGroupPermissions", "Rank": 1, - "Id": 1330, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Id": 1332 }, { "CommandName": "Set-PnPGroupPermissions", "Rank": 2, - "Id": 1331, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Id": 1333 }, { "CommandName": "Set-PnPGroupPermissions", "Rank": 3, - "Id": 1332, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Id": 1334 }, { "CommandName": "Set-PnPGroupPermissions", "Rank": 4, - "Id": 1333, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Id": 1335 }, { "CommandName": "Set-PnPGroupPermissions", "Rank": 5, - "Id": 1334, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Id": 1336 }, { "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, - "Id": 1335, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Id": 1337 }, { "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, - "Id": 1336, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Id": 1338 }, { "CommandName": "Set-PnPHomePage", "Rank": 1, - "Id": 1337, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Id": 1339 }, { "CommandName": "Set-PnPHomePage", "Rank": 2, - "Id": 1338, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Id": 1340 }, { "CommandName": "Set-PnPHomeSite", "Rank": 1, - "Id": 1339, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Id": 1341 }, { "CommandName": "Set-PnPHomeSite", "Rank": 2, - "Id": 1340, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "Id": 1342 }, { "CommandName": "Set-PnPHubSite", "Rank": 1, - "Id": 1341, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "Id": 1343 }, { "CommandName": "Set-PnPHubSite", "Rank": 2, - "Id": 1342, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "Id": 1344 }, { "CommandName": "Set-PnPHubSite", "Rank": 3, - "Id": 1343, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "Id": 1345 }, { "CommandName": "Set-PnPHubSite", "Rank": 4, - "Id": 1344, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "Id": 1346 }, { "CommandName": "Set-PnPHubSite", "Rank": 5, - "Id": 1345, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "Id": 1347 }, { "CommandName": "Set-PnPHubSite", "Rank": 6, - "Id": 1346, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "Id": 1348 }, { "CommandName": "Set-PnPImageListItemColumn", "Rank": 1, - "Id": 1347, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "Id": 1349 }, { "CommandName": "Set-PnPImageListItemColumn", "Rank": 2, - "Id": 1348, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Id": 1350 }, { "CommandName": "Set-PnPIndexedProperties", "Rank": 1, - "Id": 1349, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Id": 1351 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1, - "Id": 1350, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Id": 1352 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2, - "Id": 1351, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Id": 1353 }, { "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1, - "Id": 1352, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Id": 1354 }, { "CommandName": "Set-PnPLabel", "Rank": 1, - "Id": 1353, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Id": 1355 }, { "CommandName": "Set-PnPLabel", "Rank": 2, - "Id": 1354, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Id": 1356 }, { "CommandName": "Set-PnPList", "Rank": 1, - "Id": 1355, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Id": 1357 }, { "CommandName": "Set-PnPList", "Rank": 2, - "Id": 1356, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Id": 1358 }, { "CommandName": "Set-PnPList", "Rank": 3, - "Id": 1357, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Id": 1359 }, { "CommandName": "Set-PnPList", "Rank": 4, - "Id": 1358, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "Id": 1360 }, { "CommandName": "Set-PnPList", "Rank": 5, - "Id": 1359, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Id": 1361 }, { "CommandName": "Set-PnPList", "Rank": 6, - "Id": 1360, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Id": 1362 }, { "CommandName": "Set-PnPList", "Rank": 7, - "Id": 1361, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Id": 1363 }, { "CommandName": "Set-PnPList", "Rank": 8, - "Id": 1362, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Id": 1364 }, { "CommandName": "Set-PnPList", "Rank": 9, - "Id": 1363, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Id": 1365 }, { "CommandName": "Set-PnPList", "Rank": 10, - "Id": 1364, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Id": 1366 }, { "CommandName": "Set-PnPList", "Rank": 11, - "Id": 1365, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Id": 1367 }, { "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1, - "Id": 1366, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Id": 1368 }, { "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 2, - "Id": 1367, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Id": 1369 }, { "CommandName": "Set-PnPListItem", "Rank": 1, - "Id": 1368, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1370 }, { "CommandName": "Set-PnPListItem", "Rank": 2, - "Id": 1369, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1371 }, { "CommandName": "Set-PnPListItem", "Rank": 3, - "Id": 1370, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1372 }, { "CommandName": "Set-PnPListItem", "Rank": 4, - "Id": 1371, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Id": 1373 }, { "CommandName": "Set-PnPListItem", "Rank": 5, - "Id": 1372, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Id": 1374 }, { "CommandName": "Set-PnPListItemAsRecord", "Rank": 1, - "Id": 1373, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 1375 }, { "CommandName": "Set-PnPListItemAsRecord", "Rank": 2, - "Id": 1374, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Id": 1376 }, { "CommandName": "Set-PnPListItemPermission", "Rank": 1, - "Id": 1375, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1377 }, { "CommandName": "Set-PnPListItemPermission", "Rank": 2, - "Id": 1376, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1378 }, { "CommandName": "Set-PnPListItemPermission", "Rank": 3, - "Id": 1377, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1379 }, { "CommandName": "Set-PnPListItemPermission", "Rank": 4, - "Id": 1378, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Id": 1380 }, { "CommandName": "Set-PnPListItemPermission", "Rank": 5, - "Id": 1379, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Id": 1381 }, { "CommandName": "Set-PnPListPermission", "Rank": 1, - "Id": 1380, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1382 }, { "CommandName": "Set-PnPListPermission", "Rank": 2, - "Id": 1381, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1383 }, { "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1, - "Id": 1382, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Id": 1384 }, { "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2, - "Id": 1383, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Id": 1385 }, { "CommandName": "Set-PnPMasterPage", "Rank": 1, - "Id": 1384, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1386 }, { "CommandName": "Set-PnPMasterPage", "Rank": 2, - "Id": 1385, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1387 }, { "CommandName": "Set-PnPMasterPage", "Rank": 3, - "Id": 1386, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1388 }, { "CommandName": "Set-PnPMasterPage", "Rank": 4, - "Id": 1387, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1389 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1, - "Id": 1388, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Id": 1390 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2, - "Id": 1389, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1391 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "Id": 1390, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1392 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1, - "Id": 1391, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Id": 1393 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2, - "Id": 1392, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1394 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "Id": 1393, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1395 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1, - "Id": 1394, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Id": 1396 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2, - "Id": 1395, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1397 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "Id": 1396, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1398 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1, - "Id": 1397, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Id": 1399 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2, - "Id": 1398, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1400 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "Id": 1399, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1401 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1, - "Id": 1400, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Id": 1402 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2, - "Id": 1401, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Id": 1403 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "Id": 1402, - "Command": "Set-PnPMessageCenterAnnouncementAsRead" + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1404 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1, - "Id": 1403, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Id": 1405 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2, - "Id": 1404, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Id": 1406 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "Id": 1405, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1407 }, { "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, - "Id": 1406, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1408 }, { "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, - "Id": 1407, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1409 }, { "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, - "Id": 1408, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Id": 1410 }, { "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, - "Id": 1409, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Id": 1411 }, { "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, - "Id": 1410, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Id": 1412 }, { "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, - "Id": 1411, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 1413 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 1412, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Id": 1414 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, - "Id": 1413, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Id": 1415 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 1, - "Id": 1414, - "Command": "Set-PnPMinimalDownloadStrategy -Off" + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Id": 1416 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 2, - "Id": 1415, - "Command": "Set-PnPMinimalDownloadStrategy -On" + "Command": "Set-PnPMinimalDownloadStrategy -On", + "Id": 1417 }, { "CommandName": "Set-PnPPage", "Rank": 1, - "Id": 1416, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Id": 1418 }, { "CommandName": "Set-PnPPage", "Rank": 2, - "Id": 1417, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Id": 1419 }, { "CommandName": "Set-PnPPage", "Rank": 3, - "Id": 1418, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Id": 1420 }, { "CommandName": "Set-PnPPage", "Rank": 4, - "Id": 1419, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Id": 1421 }, { "CommandName": "Set-PnPPage", "Rank": 5, - "Id": 1420, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Id": 1422 }, { "CommandName": "Set-PnPPage", "Rank": 6, - "Id": 1421, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "Id": 1423 }, { "CommandName": "Set-PnPPage", "Rank": 7, - "Id": 1422, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 1424 }, { "CommandName": "Set-PnPPage", "Rank": 8, - "Id": 1423, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Id": 1425 }, { "CommandName": "Set-PnPPage", "Rank": 9, - "Id": 1424, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 1426 }, { "CommandName": "Set-PnPPage", "Rank": 10, - "Id": 1425, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 1427 }, { "CommandName": "Set-PnPPage", "Rank": 11, - "Id": 1426, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Id": 1428 }, { "CommandName": "Set-PnPPageTextPart", "Rank": 1, - "Id": 1427, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Id": 1429 }, { "CommandName": "Set-PnPPageWebPart", "Rank": 1, - "Id": 1428, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Id": 1430 }, { "CommandName": "Set-PnPPageWebPart", "Rank": 2, - "Id": 1429, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Id": 1431 }, { "CommandName": "Set-PnPPlannerBucket", "Rank": 1, - "Id": 1430, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Id": 1432 }, { "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, - "Id": 1431, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Id": 1433 }, { "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, - "Id": 1432, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Id": 1434 }, { "CommandName": "Set-PnPPlannerPlan", "Rank": 1, - "Id": 1433, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Id": 1435 }, { "CommandName": "Set-PnPPlannerTask", "Rank": 1, - "Id": 1434, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Id": 1436 }, { "CommandName": "Set-PnPPlannerTask", "Rank": 2, - "Id": 1435, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Id": 1437 }, { "CommandName": "Set-PnPPlannerTask", "Rank": 3, - "Id": 1436, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Id": 1438 }, { "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, - "Id": 1437, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1439 }, { "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, - "Id": 1438, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Id": 1440 }, { "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, - "Id": 1439, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Id": 1441 }, { "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, - "Id": 1440, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Id": 1442 }, { "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1, - "Id": 1441, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Id": 1443 }, { "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2, - "Id": 1442, - "Command": "Set-PnPRequestAccessEmails -Disabled" + "Command": "Set-PnPRequestAccessEmails -Disabled", + "Id": 1444 }, { "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3, - "Id": 1443, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false" + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Id": 1445 }, { "CommandName": "Set-PnPRoleDefinition", "Rank": 1, - "Id": 1444, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Id": 1446 }, { "CommandName": "Set-PnPRoleDefinition", "Rank": 2, - "Id": 1445, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Id": 1447 }, { "CommandName": "Set-PnPRoleDefinition", "Rank": 3, - "Id": 1446, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Id": 1448 }, { "CommandName": "Set-PnPRoleDefinition", "Rank": 4, - "Id": 1447, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Id": 1449 }, { "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, - "Id": 1448, - "Command": "Set-PnPSearchConfiguration -Configuration $config" + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Id": 1450 }, { "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, - "Id": 1449, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1451 }, { "CommandName": "Set-PnPSearchConfiguration", "Rank": 3, - "Id": 1450, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1452 }, { "CommandName": "Set-PnPSearchConfiguration", "Rank": 4, - "Id": 1451, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1453 }, { "CommandName": "Set-PnPSearchExternalItem", "Rank": 1, - "Id": 1452, - "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-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": 1454 }, { "CommandName": "Set-PnPSearchExternalItem", "Rank": 2, - "Id": 1453, - "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-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": 1455 }, { "CommandName": "Set-PnPSearchSettings", "Rank": 1, - "Id": 1454, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Id": 1456 }, { "CommandName": "Set-PnPSearchSettings", "Rank": 2, - "Id": 1455, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Id": 1457 }, { "CommandName": "Set-PnPSearchSettings", "Rank": 3, - "Id": 1456, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Id": 1458 }, { "CommandName": "Set-PnPSearchSettings", "Rank": 4, - "Id": 1457, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Id": 1459 }, { "CommandName": "Set-PnPSearchSettings", "Rank": 5, - "Id": 1458, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Id": 1460 }, { "CommandName": "Set-PnPSearchSettings", "Rank": 6, - "Id": 1459, - "Command": "Set-PnPSearchSettings -SearchScope Tenant" + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Id": 1461 }, { "CommandName": "Set-PnPSearchSettings", "Rank": 7, - "Id": 1460, - "Command": "Set-PnPSearchSettings -SearchScope Hub" + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Id": 1462 }, { "CommandName": "Set-PnPSite", "Rank": 1, - "Id": 1461, - "Command": "Set-PnPSite -Classification \"HBI\"" + "Command": "Set-PnPSite -Classification \"HBI\"", + "Id": 1463 }, { "CommandName": "Set-PnPSite", "Rank": 2, - "Id": 1462, - "Command": "Set-PnPSite -Classification $null" + "Command": "Set-PnPSite -Classification $null", + "Id": 1464 }, { "CommandName": "Set-PnPSite", "Rank": 3, - "Id": 1463, - "Command": "Set-PnPSite -DisableFlows" + "Command": "Set-PnPSite -DisableFlows", + "Id": 1465 }, { "CommandName": "Set-PnPSite", "Rank": 4, - "Id": 1464, - "Command": "Set-PnPSite -DisableFlows:$false" + "Command": "Set-PnPSite -DisableFlows:$false", + "Id": 1466 }, { "CommandName": "Set-PnPSite", "Rank": 5, - "Id": 1465, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Id": 1467 }, { "CommandName": "Set-PnPSite", "Rank": 6, - "Id": 1466, - "Command": "Set-PnPSite -NoScriptSite $false" + "Command": "Set-PnPSite -NoScriptSite $false", + "Id": 1468 }, { "CommandName": "Set-PnPSite", "Rank": 7, - "Id": 1467, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Id": 1469 }, { "CommandName": "Set-PnPSite", "Rank": 8, - "Id": 1468, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Id": 1470 }, { "CommandName": "Set-PnPSite", "Rank": 9, - "Id": 1469, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Id": 1471 }, { "CommandName": "Set-PnPSite", "Rank": 10, - "Id": 1470, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Id": 1472 }, { "CommandName": "Set-PnPSite", "Rank": 11, - "Id": 1471, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Id": 1473 }, { "CommandName": "Set-PnPSite", "Rank": 12, - "Id": 1472, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Id": 1474 }, { "CommandName": "Set-PnPSite", "Rank": 13, - "Id": 1473, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Id": 1475 }, { "CommandName": "Set-PnPSite", "Rank": 14, - "Id": 1474, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Id": 1476 }, { "CommandName": "Set-PnPSite", "Rank": 15, - "Id": 1475, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "Id": 1477 }, { "CommandName": "Set-PnPSite", "Rank": 16, - "Id": 1476, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Id": 1478 }, { "CommandName": "Set-PnPSite", "Rank": 17, - "Id": 1477, - "Command": "Set-PnPSite -CancelVPForExistingLibs" + "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Id": 1479 }, { "CommandName": "Set-PnPSiteClassification", "Rank": 1, - "Id": 1478, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"" + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Id": 1480 }, { "CommandName": "Set-PnPSiteClosure", "Rank": 1, - "Id": 1479, - "Command": "Set-PnPSiteClosure -State Open" + "Command": "Set-PnPSiteClosure -State Open", + "Id": 1481 }, { "CommandName": "Set-PnPSiteClosure", "Rank": 2, - "Id": 1480, - "Command": "Set-PnPSiteClosure -State Closed" + "Command": "Set-PnPSiteClosure -State Closed", + "Id": 1482 }, { "CommandName": "Set-PnPSiteDesign", "Rank": 1, - "Id": 1481, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Id": 1483 }, { "CommandName": "Set-PnPSiteDesign", "Rank": 2, - "Id": 1482, - "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-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": 1484 }, { "CommandName": "Set-PnPSiteGroup", "Rank": 1, - "Id": 1483, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "Id": 1485 }, { "CommandName": "Set-PnPSiteGroup", "Rank": 2, - "Id": 1484, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Id": 1486 }, { "CommandName": "Set-PnPSitePolicy", "Rank": 1, - "Id": 1485, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 1487 }, { "CommandName": "Set-PnPSiteScript", "Rank": 1, - "Id": 1486, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1488 }, { "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1, - "Id": 1487, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1489 }, { "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, - "Id": 1488, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Id": 1490 }, { "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, - "Id": 1489, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Id": 1491 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, - "Id": 1490, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1492 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, - "Id": 1491, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1493 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3, - "Id": 1492, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1494 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4, - "Id": 1493, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1495 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5, - "Id": 1494, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1496 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 6, - "Id": 1495, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1497 }, { "CommandName": "Set-PnPStorageEntity", "Rank": 1, - "Id": 1496, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1498 }, { "CommandName": "Set-PnPStorageEntity", "Rank": 2, - "Id": 1497, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1499 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, - "Id": 1498, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1500 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, - "Id": 1499, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1501 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, - "Id": 1500, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1502 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, - "Id": 1501, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1503 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1, - "Id": 1502, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Id": 1504 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 2, - "Id": 1503, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Id": 1505 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, - "Id": 1504, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Id": 1506 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, - "Id": 1505, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Id": 1507 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, - "Id": 1506, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Id": 1508 }, { "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "Id": 1507, - "Command": "Set-PnPTeamifyPromptHidden" + "Command": "Set-PnPTeamifyPromptHidden", + "Id": 1509 }, { "CommandName": "Set-PnPTeamsChannel", "Rank": 1, - "Id": 1508, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Id": 1510 }, { "CommandName": "Set-PnPTeamsChannel", "Rank": 2, - "Id": 1509, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Id": 1511 }, { "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1, - "Id": 1510, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "Id": 1512 }, { "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2, - "Id": 1511, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Id": 1513 }, { "CommandName": "Set-PnPTeamsTab", "Rank": 1, - "Id": 1512, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Id": 1514 }, { "CommandName": "Set-PnPTeamsTag", "Rank": 1, - "Id": 1513, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Id": 1515 }, { "CommandName": "Set-PnPTeamsTeam", "Rank": 1, - "Id": 1514, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Id": 1516 }, { "CommandName": "Set-PnPTeamsTeam", "Rank": 2, - "Id": 1515, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Id": 1517 }, { "CommandName": "Set-PnPTeamsTeam", "Rank": 3, - "Id": 1516, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Id": 1518 }, { "CommandName": "Set-PnPTeamsTeam", "Rank": 4, - "Id": 1517, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Id": 1519 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, - "Id": 1518, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Id": 1520 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, - "Id": 1519, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Id": 1521 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3, - "Id": 1520, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Id": 1522 }, { "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1, - "Id": 1521, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Id": 1523 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, - "Id": 1522, - "Command": "Set-PnPTemporarilyDisableAppBar $true" + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Id": 1524 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, - "Id": 1523, - "Command": "Set-PnPTemporarilyDisableAppBar $false" + "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Id": 1525 }, { "CommandName": "Set-PnPTenant", "Rank": 1, - "Id": 1524, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", + "Id": 1526 }, { "CommandName": "Set-PnPTenant", "Rank": 2, - "Id": 1525, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Id": 1527 }, { "CommandName": "Set-PnPTenant", "Rank": 3, - "Id": 1526, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false" + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Id": 1528 }, { "CommandName": "Set-PnPTenant", "Rank": 4, - "Id": 1527, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Id": 1529 }, { "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 1528, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Id": 1530 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, - "Id": 1529, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Id": 1531 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, - "Id": 1530, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Id": 1532 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3, - "Id": 1531, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Id": 1533 }, { "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 1, - "Id": 1532, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", + "Id": 1534 }, { "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2, - "Id": 1533, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Id": 1535 }, { "CommandName": "Set-PnPTenantSite", "Rank": 1, - "Id": 1534, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Id": 1536 }, { "CommandName": "Set-PnPTenantSite", "Rank": 2, - "Id": 1535, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Id": 1537 }, { "CommandName": "Set-PnPTenantSite", "Rank": 3, - "Id": 1536, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1538 }, { "CommandName": "Set-PnPTenantSite", "Rank": 4, - "Id": 1537, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1539 }, { "CommandName": "Set-PnPTenantSite", "Rank": 5, - "Id": 1538, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Id": 1540 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 1539, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Id": 1541 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, - "Id": 1540, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Id": 1542 }, { "CommandName": "Set-PnPTerm", "Rank": 1, - "Id": 1541, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Id": 1543 }, { "CommandName": "Set-PnPTerm", "Rank": 2, - "Id": 1542, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1544 }, { "CommandName": "Set-PnPTerm", "Rank": 3, - "Id": 1543, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1545 }, { "CommandName": "Set-PnPTerm", "Rank": 4, - "Id": 1544, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Id": 1546 }, { "CommandName": "Set-PnPTermGroup", "Rank": 1, - "Id": 1545, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Id": 1547 }, { "CommandName": "Set-PnPTermSet", "Rank": 1, - "Id": 1546, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Id": 1548 }, { "CommandName": "Set-PnPTermSet", "Rank": 2, - "Id": 1547, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Id": 1549 }, { "CommandName": "Set-PnPTermSet", "Rank": 3, - "Id": 1548, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Id": 1550 }, { "CommandName": "Set-PnPTheme", "Rank": 1, - "Id": 1549, - "Command": "Set-PnPTheme" + "Command": "Set-PnPTheme", + "Id": 1551 }, { "CommandName": "Set-PnPTheme", "Rank": 2, - "Id": 1550, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Id": 1552 }, { "CommandName": "Set-PnPTheme", "Rank": 3, - "Id": 1551, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Id": 1553 }, { "CommandName": "Set-PnPTheme", "Rank": 4, - "Id": 1552, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Id": 1554 }, { "CommandName": "Set-PnPTraceLog", "Rank": 1, - "Id": 1553, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Id": 1555 }, { "CommandName": "Set-PnPTraceLog", "Rank": 2, - "Id": 1554, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Id": 1556 }, { "CommandName": "Set-PnPTraceLog", "Rank": 3, - "Id": 1555, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Id": 1557 }, { "CommandName": "Set-PnPTraceLog", "Rank": 4, - "Id": 1556, - "Command": "Set-PnPTraceLog -Off" + "Command": "Set-PnPTraceLog -Off", + "Id": 1558 }, { "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1, - "Id": 1557, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Id": 1559 }, { "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, - "Id": 1558, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Id": 1560 }, { "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, - "Id": 1559, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Id": 1561 }, { "CommandName": "Set-PnPView", "Rank": 1, - "Id": 1560, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Id": 1562 }, { "CommandName": "Set-PnPView", "Rank": 2, - "Id": 1561, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Id": 1563 }, { "CommandName": "Set-PnPView", "Rank": 3, - "Id": 1562, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", + "Id": 1564 }, { "CommandName": "Set-PnPView", "Rank": 4, - "Id": 1563, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Id": 1565 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Id": 1564, - "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-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": 1566 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2, - "Id": 1565, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Id": 1567 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 3, - "Id": 1566, - "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-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": 1568 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4, - "Id": 1567, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Id": 1569 }, { "CommandName": "Set-PnPWeb", "Rank": 1, - "Id": 1568, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Id": 1570 }, { "CommandName": "Set-PnPWeb", "Rank": 2, - "Id": 1569, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Id": 1571 }, { "CommandName": "Set-PnPWeb", "Rank": 3, - "Id": 1570, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Id": 1572 }, { "CommandName": "Set-PnPWeb", "Rank": 4, - "Id": 1571, - "Command": "Set-PnPWeb -NoCrawl:$true" + "Command": "Set-PnPWeb -NoCrawl:$true", + "Id": 1573 }, { "CommandName": "Set-PnPWebHeader", "Rank": 1, - "Id": 1572, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Id": 1574 }, { "CommandName": "Set-PnPWebHeader", "Rank": 2, - "Id": 1573, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Id": 1575 }, { "CommandName": "Set-PnPWebHeader", "Rank": 3, - "Id": 1574, - "Command": "Set-PnPWebHeader -LogoAlignment Middle" + "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Id": 1576 }, { "CommandName": "Set-PnPWebhookSubscription", "Rank": 1, - "Id": 1575, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 1577 }, { "CommandName": "Set-PnPWebhookSubscription", "Rank": 2, - "Id": 1576, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Id": 1578 }, { "CommandName": "Set-PnPWebPartProperty", "Rank": 1, - "Id": 1577, - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", + "Id": 1579 }, { "CommandName": "Set-PnPWebPermission", "Rank": 1, - "Id": 1578, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1580 }, { "CommandName": "Set-PnPWebPermission", "Rank": 2, - "Id": 1579, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Id": 1581 }, { "CommandName": "Set-PnPWebPermission", "Rank": 3, - "Id": 1580, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1582 }, { "CommandName": "Set-PnPWebPermission", "Rank": 4, - "Id": 1581, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Id": 1583 }, { "CommandName": "Set-PnPWebTheme", "Rank": 1, - "Id": 1582, - "Command": "Set-PnPWebTheme -Theme MyTheme" + "Command": "Set-PnPWebTheme -Theme MyTheme", + "Id": 1584 }, { "CommandName": "Set-PnPWebTheme", "Rank": 2, - "Id": 1583, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Id": 1585 }, { "CommandName": "Set-PnPWikiPageContent", "Rank": 1, - "Id": 1584, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Id": 1586 }, { "CommandName": "Submit-PnPSearchQuery", "Rank": 1, - "Id": 1585, - "Command": "Submit-PnPSearchQuery -Query \"finance\"" + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Id": 1587 }, { "CommandName": "Submit-PnPSearchQuery", "Rank": 2, - "Id": 1586, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Id": 1588 }, { "CommandName": "Submit-PnPSearchQuery", "Rank": 3, - "Id": 1587, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Id": 1589 }, { "CommandName": "Submit-PnPSearchQuery", "Rank": 4, - "Id": 1588, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Id": 1590 }, { "CommandName": "Submit-PnPSearchQuery", "Rank": 5, - "Id": 1589, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Id": 1591 }, { "CommandName": "Submit-PnPSearchQuery", "Rank": 6, - "Id": 1590, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "Id": 1592 }, { "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, - "Id": 1591, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Id": 1593 }, { "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2, - "Id": 1592, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html" + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html", + "Id": 1594 }, { "CommandName": "Sync-PnPAppToTeams", "Rank": 1, - "Id": 1593, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1595 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, - "Id": 1594, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Id": 1596 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2, - "Id": 1595, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Id": 1597 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3, - "Id": 1596, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Id": 1598 }, { "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, - "Id": 1597, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Id": 1599 }, { "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, - "Id": 1598, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Id": 1600 }, { "CommandName": "Test-PnPSite", "Rank": 1, - "Id": 1599, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1601 }, { "CommandName": "Test-PnPSite", "Rank": 2, - "Id": 1600, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1602 }, { "CommandName": "Test-PnPTenantTemplate", "Rank": 1, - "Id": 1601, - "Command": "Test-PnPTenantTemplate -Template $myTemplate" + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Id": 1603 }, { "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1, - "Id": 1602, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Id": 1604 }, { "CommandName": "Uninstall-PnPApp", "Rank": 1, - "Id": 1603, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1605 }, { "CommandName": "Uninstall-PnPApp", "Rank": 2, - "Id": 1604, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1606 }, { "CommandName": "Unpublish-PnPApp", "Rank": 1, - "Id": 1605, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1607 }, { "CommandName": "Unpublish-PnPApp", "Rank": 2, - "Id": 1606, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1608 }, { "CommandName": "Unpublish-PnPContentType", "Rank": 1, - "Id": 1607, - "Command": "Unpublish-PnPContentType -ContentType 0x0101" + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Id": 1609 }, { "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1, - "Id": 1608, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 1610 }, { "CommandName": "Unpublish-PnPSyntexModel", "Rank": 2, - "Id": 1609, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 1611 }, { "CommandName": "Unregister-PnPHubSite", "Rank": 1, - "Id": 1610, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1612 }, { "CommandName": "Update-PnPApp", "Rank": 1, - "Id": 1611, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1613 }, { "CommandName": "Update-PnPApp", "Rank": 2, - "Id": 1612, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1614 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, - "Id": 1613, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1615 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2, - "Id": 1614, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Id": 1616 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3, - "Id": 1615, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 1617 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, - "Id": 1616, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Id": 1618 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, - "Id": 1617, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Id": 1619 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3, - "Id": 1618, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Id": 1620 }, { "CommandName": "Update-PnPTeamsApp", "Rank": 1, - "Id": 1619, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Id": 1621 }, { "CommandName": "Update-PnPTeamsUser", "Rank": 1, - "Id": 1620, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1622 }, { "CommandName": "Update-PnPTeamsUser", "Rank": 2, - "Id": 1621, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 1623 }, { "CommandName": "Update-PnPTeamsUser", "Rank": 3, - "Id": 1622, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Id": 1624 }, { "CommandName": "Update-PnPUserType", "Rank": 1, - "Id": 1623, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Id": 1625 } ] diff --git a/version.txt b/version.txt index e2ae09b83..1a7f2caa8 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.31 \ No newline at end of file +2.3.32 \ No newline at end of file From 9791f3fddf7ec3b57fd098b01f77bff4f44cce77 Mon Sep 17 00:00:00 2001 From: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Date: Mon, 22 Jan 2024 02:47:38 +0000 Subject: [PATCH 44/53] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3250 ++++++++--------- version.txt | 2 +- 3 files changed, 1627 insertions(+), 1627 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index c4bcbdfe9..e0dcc8183 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -d20f305ecfa29a3c0cc0468cd27176748168e6e3 \ No newline at end of file +8a5dd2a548fbc3f20878dad31266dc9081556e5a \ 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 511bff1e4..150513531 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9752 +1,9752 @@ [ { - "CommandName": "Add-PnPAlert", "Rank": 1, "Command": "Add-PnPAlert -List \"Demo List\"", + "CommandName": "Add-PnPAlert", "Id": 1 }, { - "CommandName": "Add-PnPAlert", "Rank": 2, "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", + "CommandName": "Add-PnPAlert", "Id": 2 }, { - "CommandName": "Add-PnPAlert", "Rank": 3, "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPAlert", "Id": 3 }, { - "CommandName": "Add-PnPAlert", "Rank": 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))", + "CommandName": "Add-PnPAlert", "Id": 4 }, { - "CommandName": "Add-PnPApp", "Rank": 1, "Command": "Add-PnPApp -Path ./myapp.sppkg", + "CommandName": "Add-PnPApp", "Id": 5 }, { - "CommandName": "Add-PnPApp", "Rank": 2, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "CommandName": "Add-PnPApp", "Id": 6 }, { - "CommandName": "Add-PnPApp", "Rank": 3, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "CommandName": "Add-PnPApp", "Id": 7 }, { - "CommandName": "Add-PnPApp", "Rank": 4, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "CommandName": "Add-PnPApp", "Id": 8 }, { - "CommandName": "Add-PnPApplicationCustomizer", "Rank": 1, "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", + "CommandName": "Add-PnPApplicationCustomizer", "Id": 9 }, { - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "CommandName": "Add-PnPAvailableSiteClassification", "Id": 10 }, { - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "CommandName": "Add-PnPAvailableSiteClassification", "Id": 11 }, { - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 1, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPAzureADGroupMember", "Id": 12 }, { - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 2, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPAzureADGroupMember", "Id": 13 }, { - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "CommandName": "Add-PnPAzureADGroupMember", "Id": 14 }, { - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 1, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPAzureADGroupOwner", "Id": 15 }, { - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 2, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPAzureADGroupOwner", "Id": 16 }, { - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "CommandName": "Add-PnPAzureADGroupOwner", "Id": 17 }, { - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 1, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Id": 18 }, { - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 2, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Id": 19 }, { - "CommandName": "Add-PnPContentType", "Rank": 1, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", + "CommandName": "Add-PnPContentType", "Id": 20 }, { - "CommandName": "Add-PnPContentType", "Rank": 2, "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\"", + "CommandName": "Add-PnPContentType", "Id": 21 }, { - "CommandName": "Add-PnPContentType", "Rank": 3, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "CommandName": "Add-PnPContentType", "Id": 22 }, { - "CommandName": "Add-PnPContentType", "Rank": 4, "Command": "Add-PnPContentType -Name \"Project Item\"", + "CommandName": "Add-PnPContentType", "Id": 23 }, { - "CommandName": "Add-PnPContentType", "Rank": 5, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "CommandName": "Add-PnPContentType", "Id": 24 }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 25 }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 26 }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 27 }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 28 }, { - "CommandName": "Add-PnPContentTypeToList", "Rank": 1, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "CommandName": "Add-PnPContentTypeToList", "Id": 29 }, { - "CommandName": "Add-PnPCustomAction", "Rank": 1, "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`\"}\"", + "CommandName": "Add-PnPCustomAction", "Id": 30 }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 1, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 31 }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity", + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 32 }, { - "CommandName": "Add-PnPDocumentSet", "Rank": 1, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "CommandName": "Add-PnPDocumentSet", "Id": 33 }, { - "CommandName": "Add-PnPEventReceiver", "Rank": 1, "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "CommandName": "Add-PnPEventReceiver", "Id": 34 }, { - "CommandName": "Add-PnPEventReceiver", "Rank": 2, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", + "CommandName": "Add-PnPEventReceiver", "Id": 35 }, { - "CommandName": "Add-PnPEventReceiver", "Rank": 3, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", + "CommandName": "Add-PnPEventReceiver", "Id": 36 }, { - "CommandName": "Add-PnPEventReceiver", "Rank": 4, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "CommandName": "Add-PnPEventReceiver", "Id": 37 }, { - "CommandName": "Add-PnPField", "Rank": 1, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "CommandName": "Add-PnPField", "Id": 38 }, { - "CommandName": "Add-PnPField", "Rank": 2, "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", + "CommandName": "Add-PnPField", "Id": 39 }, { - "CommandName": "Add-PnPField", "Rank": 3, "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"", + "CommandName": "Add-PnPField", "Id": 40 }, { - "CommandName": "Add-PnPField", "Rank": 4, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "CommandName": "Add-PnPField", "Id": 41 }, { - "CommandName": "Add-PnPField", "Rank": 5, "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", + "CommandName": "Add-PnPField", "Id": 42 }, { - "CommandName": "Add-PnPField", "Rank": 6, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "CommandName": "Add-PnPField", "Id": 43 }, { - "CommandName": "Add-PnPFieldToContentType", "Rank": 1, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Add-PnPFieldToContentType", "Id": 44 }, { - "CommandName": "Add-PnPFile", "Rank": 1, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "CommandName": "Add-PnPFile", "Id": 45 }, { - "CommandName": "Add-PnPFile", "Rank": 2, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "CommandName": "Add-PnPFile", "Id": 46 }, { - "CommandName": "Add-PnPFile", "Rank": 3, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", + "CommandName": "Add-PnPFile", "Id": 47 }, { - "CommandName": "Add-PnPFile", "Rank": 4, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", + "CommandName": "Add-PnPFile", "Id": 48 }, { - "CommandName": "Add-PnPFile", "Rank": 5, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", + "CommandName": "Add-PnPFile", "Id": 49 }, { - "CommandName": "Add-PnPFile", "Rank": 6, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", + "CommandName": "Add-PnPFile", "Id": 50 }, { - "CommandName": "Add-PnPFile", "Rank": 7, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "CommandName": "Add-PnPFile", "Id": 51 }, { - "CommandName": "Add-PnPFile", "Rank": 8, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "CommandName": "Add-PnPFile", "Id": 52 }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 1, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 53 }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 2, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 54 }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 3, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 55 }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 1, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 56 }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 57 }, { - "CommandName": "Add-PnPFileSharingInvite", "Rank": 1, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "CommandName": "Add-PnPFileSharingInvite", "Id": 58 }, { - "CommandName": "Add-PnPFileSharingInvite", "Rank": 2, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "CommandName": "Add-PnPFileSharingInvite", "Id": 59 }, { - "CommandName": "Add-PnPFileSharingInvite", "Rank": 3, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFileSharingInvite", "Id": 60 }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 1, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 61 }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 2, "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 62 }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 3, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 63 }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 64 }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 65 }, { - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 1, "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPFileUserSharingLink", "Id": 66 }, { - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 2, "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPFileUserSharingLink", "Id": 67 }, { - "CommandName": "Add-PnPFlowOwner", "Rank": 1, "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", + "CommandName": "Add-PnPFlowOwner", "Id": 68 }, { - "CommandName": "Add-PnPFlowOwner", "Rank": 2, "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView", + "CommandName": "Add-PnPFlowOwner", "Id": 69 }, { - "CommandName": "Add-PnPFlowOwner", "Rank": 3, "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare", + "CommandName": "Add-PnPFlowOwner", "Id": 70 }, { - "CommandName": "Add-PnPFlowOwner", "Rank": 4, "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", + "CommandName": "Add-PnPFlowOwner", "Id": 71 }, { - "CommandName": "Add-PnPFolder", "Rank": 1, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Add-PnPFolder", "Id": 72 }, { - "CommandName": "Add-PnPFolder", "Rank": 2, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFolder", "Id": 73 }, { - "CommandName": "Add-PnPFolder", "Rank": 3, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "CommandName": "Add-PnPFolder", "Id": 74 }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 1, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 75 }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 2, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 76 }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 3, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 77 }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 1, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 78 }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 79 }, { - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 1, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "CommandName": "Add-PnPFolderSharingInvite", "Id": 80 }, { - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 2, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "CommandName": "Add-PnPFolderSharingInvite", "Id": 81 }, { - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 3, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFolderSharingInvite", "Id": 82 }, { - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 1, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPFolderUserSharingLink", "Id": 83 }, { - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 2, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPFolderUserSharingLink", "Id": 84 }, { - "CommandName": "Add-PnPGroupMember", "Rank": 1, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Add-PnPGroupMember", "Id": 85 }, { - "CommandName": "Add-PnPGroupMember", "Rank": 2, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "CommandName": "Add-PnPGroupMember", "Id": 86 }, { - "CommandName": "Add-PnPHtmlPublishingPageLayout", "Rank": 1, "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "CommandName": "Add-PnPHtmlPublishingPageLayout", "Id": 87 }, { - "CommandName": "Add-PnPHubSiteAssociation", "Rank": 1, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "CommandName": "Add-PnPHubSiteAssociation", "Id": 88 }, { - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 1, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "CommandName": "Add-PnPHubToHubAssociation", "Id": 89 }, { - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 2, "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "CommandName": "Add-PnPHubToHubAssociation", "Id": 90 }, { - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 3, "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\"", + "CommandName": "Add-PnPHubToHubAssociation", "Id": 91 }, { - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 1, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site", + "CommandName": "Add-PnPJavaScriptBlock", "Id": 92 }, { - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'", + "CommandName": "Add-PnPJavaScriptBlock", "Id": 93 }, { - "CommandName": "Add-PnPJavaScriptLink", "Rank": 1, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", + "CommandName": "Add-PnPJavaScriptLink", "Id": 94 }, { - "CommandName": "Add-PnPJavaScriptLink", "Rank": 2, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "CommandName": "Add-PnPJavaScriptLink", "Id": 95 }, { - "CommandName": "Add-PnPListDesign", "Rank": 1, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "CommandName": "Add-PnPListDesign", "Id": 96 }, { - "CommandName": "Add-PnPListDesign", "Rank": 2, "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\"", + "CommandName": "Add-PnPListDesign", "Id": 97 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 1, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 98 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 99 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 100 }, { - "CommandName": "Add-PnPListItem", "Rank": 1, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem", "Id": 101 }, { - "CommandName": "Add-PnPListItem", "Rank": 2, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem", "Id": 102 }, { - "CommandName": "Add-PnPListItem", "Rank": 3, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "CommandName": "Add-PnPListItem", "Id": 103 }, { - "CommandName": "Add-PnPListItem", "Rank": 4, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "CommandName": "Add-PnPListItem", "Id": 104 }, { - "CommandName": "Add-PnPListItem", "Rank": 5, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "CommandName": "Add-PnPListItem", "Id": 105 }, { - "CommandName": "Add-PnPListItemAttachment", "Rank": 1, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "CommandName": "Add-PnPListItemAttachment", "Id": 106 }, { - "CommandName": "Add-PnPListItemAttachment", "Rank": 2, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "CommandName": "Add-PnPListItemAttachment", "Id": 107 }, { - "CommandName": "Add-PnPListItemAttachment", "Rank": 3, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "CommandName": "Add-PnPListItemAttachment", "Id": 108 }, { - "CommandName": "Add-PnPListItemComment", "Rank": 1, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "CommandName": "Add-PnPListItemComment", "Id": 109 }, { - "CommandName": "Add-PnPMasterPage", "Rank": 1, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "CommandName": "Add-PnPMasterPage", "Id": 110 }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 1, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPMicrosoft365GroupMember", "Id": 111 }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 2, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupMember", "Id": 112 }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 1, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Id": 113 }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 2, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Id": 114 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 1, "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 115 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 116 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 117 }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 1, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "CommandName": "Add-PnPNavigationNode", "Id": 118 }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 2, "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "CommandName": "Add-PnPNavigationNode", "Id": 119 }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 3, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "CommandName": "Add-PnPNavigationNode", "Id": 120 }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 4, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "CommandName": "Add-PnPNavigationNode", "Id": 121 }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 5, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "CommandName": "Add-PnPNavigationNode", "Id": 122 }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 6, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "CommandName": "Add-PnPNavigationNode", "Id": 123 }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 7, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "CommandName": "Add-PnPNavigationNode", "Id": 124 }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 8, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "CommandName": "Add-PnPNavigationNode", "Id": 125 }, { - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 1, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 126 }, { - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 2, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 127 }, { - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 128 }, { - "CommandName": "Add-PnPOrgNewsSite", "Rank": 1, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "CommandName": "Add-PnPOrgNewsSite", "Id": 129 }, { - "CommandName": "Add-PnPPage", "Rank": 1, "Command": "Add-PnPPage -Name \"NewPage\"", + "CommandName": "Add-PnPPage", "Id": 130 }, { - "CommandName": "Add-PnPPage", "Rank": 2, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "CommandName": "Add-PnPPage", "Id": 131 }, { - "CommandName": "Add-PnPPage", "Rank": 3, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "CommandName": "Add-PnPPage", "Id": 132 }, { - "CommandName": "Add-PnPPage", "Rank": 4, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "CommandName": "Add-PnPPage", "Id": 133 }, { - "CommandName": "Add-PnPPage", "Rank": 5, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "CommandName": "Add-PnPPage", "Id": 134 }, { - "CommandName": "Add-PnPPage", "Rank": 6, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "CommandName": "Add-PnPPage", "Id": 135 }, { - "CommandName": "Add-PnPPage", "Rank": 7, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Add-PnPPage", "Id": 136 }, { - "CommandName": "Add-PnPPage", "Rank": 8, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "CommandName": "Add-PnPPage", "Id": 137 }, { - "CommandName": "Add-PnPPage", "Rank": 9, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Add-PnPPage", "Id": 138 }, { - "CommandName": "Add-PnPPage", "Rank": 10, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Add-PnPPage", "Id": 139 }, { - "CommandName": "Add-PnPPageImageWebPart", "Rank": 1, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "CommandName": "Add-PnPPageImageWebPart", "Id": 140 }, { - "CommandName": "Add-PnPPageImageWebPart", "Rank": 2, "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\"", + "CommandName": "Add-PnPPageImageWebPart", "Id": 141 }, { - "CommandName": "Add-PnPPageSection", "Rank": 1, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "CommandName": "Add-PnPPageSection", "Id": 142 }, { - "CommandName": "Add-PnPPageSection", "Rank": 2, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "CommandName": "Add-PnPPageSection", "Id": 143 }, { - "CommandName": "Add-PnPPageTextPart", "Rank": 1, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "CommandName": "Add-PnPPageTextPart", "Id": 144 }, { - "CommandName": "Add-PnPPageTextPart", "Rank": 2, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "CommandName": "Add-PnPPageTextPart", "Id": 145 }, { - "CommandName": "Add-PnPPageTextPart", "Rank": 3, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", + "CommandName": "Add-PnPPageTextPart", "Id": 146 }, { - "CommandName": "Add-PnPPageWebPart", "Rank": 1, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "CommandName": "Add-PnPPageWebPart", "Id": 147 }, { - "CommandName": "Add-PnPPageWebPart", "Rank": 2, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "CommandName": "Add-PnPPageWebPart", "Id": 148 }, { - "CommandName": "Add-PnPPageWebPart", "Rank": 3, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "CommandName": "Add-PnPPageWebPart", "Id": 149 }, { - "CommandName": "Add-PnPPlannerBucket", "Rank": 1, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket", "Id": 150 }, { - "CommandName": "Add-PnPPlannerBucket", "Rank": 2, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket", "Id": 151 }, { - "CommandName": "Add-PnPPlannerRoster", "Rank": 1, "Command": "Add-PnPPlannerRoster", + "CommandName": "Add-PnPPlannerRoster", "Id": 152 }, { - "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPPlannerRosterMember", "Id": 153 }, { - "CommandName": "Add-PnPPlannerTask", "Rank": 1, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "CommandName": "Add-PnPPlannerTask", "Id": 154 }, { - "CommandName": "Add-PnPPlannerTask", "Rank": 2, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "CommandName": "Add-PnPPlannerTask", "Id": 155 }, { - "CommandName": "Add-PnPPlannerTask", "Rank": 3, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "CommandName": "Add-PnPPlannerTask", "Id": 156 }, { - "CommandName": "Add-PnPPublishingImageRendition", "Rank": 1, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Add-PnPPublishingImageRendition", "Id": 157 }, { - "CommandName": "Add-PnPPublishingPage", "Rank": 1, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "CommandName": "Add-PnPPublishingPage", "Id": 158 }, { - "CommandName": "Add-PnPPublishingPage", "Rank": 2, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "CommandName": "Add-PnPPublishingPage", "Id": 159 }, { - "CommandName": "Add-PnPPublishingPageLayout", "Rank": 1, "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "CommandName": "Add-PnPPublishingPageLayout", "Id": 160 }, { - "CommandName": "Add-PnPRoleDefinition", "Rank": 1, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "CommandName": "Add-PnPRoleDefinition", "Id": 161 }, { - "CommandName": "Add-PnPRoleDefinition", "Rank": 2, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "CommandName": "Add-PnPRoleDefinition", "Id": 162 }, { - "CommandName": "Add-PnPRoleDefinition", "Rank": 3, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "CommandName": "Add-PnPRoleDefinition", "Id": 163 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 164 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 2, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 165 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 166 }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, "Command": "Add-PnPSiteCollectionAppCatalog", + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 167 }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 2, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 168 }, { - "CommandName": "Add-PnPSiteDesign", "Rank": 1, "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite", + "CommandName": "Add-PnPSiteDesign", "Id": 169 }, { - "CommandName": "Add-PnPSiteDesign", "Rank": 2, "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", + "CommandName": "Add-PnPSiteDesign", "Id": 170 }, { - "CommandName": "Add-PnPSiteDesign", "Rank": 3, "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\"", + "CommandName": "Add-PnPSiteDesign", "Id": 171 }, { - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 1, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 172 }, { - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 2, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 173 }, { - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 3, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png", + "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 174 }, { - "CommandName": "Add-PnPSiteDesignTask", "Rank": 1, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Add-PnPSiteDesignTask", "Id": 175 }, { - "CommandName": "Add-PnPSiteDesignTask", "Rank": 2, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Add-PnPSiteDesignTask", "Id": 176 }, { - "CommandName": "Add-PnPSiteScript", "Rank": 1, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "CommandName": "Add-PnPSiteScript", "Id": 177 }, { - "CommandName": "Add-PnPSiteScriptPackage", "Rank": 1, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "CommandName": "Add-PnPSiteScriptPackage", "Id": 178 }, { - "CommandName": "Add-PnPSiteTemplate", "Rank": 1, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "CommandName": "Add-PnPSiteTemplate", "Id": 179 }, { - "CommandName": "Add-PnPStoredCredential", "Rank": 1, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "CommandName": "Add-PnPStoredCredential", "Id": 180 }, { - "CommandName": "Add-PnPStoredCredential", "Rank": 2, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "CommandName": "Add-PnPStoredCredential", "Id": 181 }, { - "CommandName": "Add-PnPStoredCredential", "Rank": 3, "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\"", + "CommandName": "Add-PnPStoredCredential", "Id": 182 }, { - "CommandName": "Add-PnPTaxonomyField", "Rank": 1, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "CommandName": "Add-PnPTaxonomyField", "Id": 183 }, { - "CommandName": "Add-PnPTaxonomyField", "Rank": 2, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "CommandName": "Add-PnPTaxonomyField", "Id": 184 }, { - "CommandName": "Add-PnPTeamsChannel", "Rank": 1, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "CommandName": "Add-PnPTeamsChannel", "Id": 185 }, { - "CommandName": "Add-PnPTeamsChannel", "Rank": 2, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "CommandName": "Add-PnPTeamsChannel", "Id": 186 }, { - "CommandName": "Add-PnPTeamsChannel", "Rank": 3, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel", "Id": 187 }, { - "CommandName": "Add-PnPTeamsChannel", "Rank": 4, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel", "Id": 188 }, { - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 1, "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", + "CommandName": "Add-PnpTeamsChannelUser", "Id": 189 }, { - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 2, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "CommandName": "Add-PnpTeamsChannelUser", "Id": 190 }, { - "CommandName": "Add-PnPTeamsTab", "Rank": 1, "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", + "CommandName": "Add-PnPTeamsTab", "Id": 191 }, { - "CommandName": "Add-PnPTeamsTab", "Rank": 2, "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\"", + "CommandName": "Add-PnPTeamsTab", "Id": 192 }, { - "CommandName": "Add-PnPTeamsTab", "Rank": 3, "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\"", + "CommandName": "Add-PnPTeamsTab", "Id": 193 }, { - "CommandName": "Add-PnPTeamsTab", "Rank": 4, "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", + "CommandName": "Add-PnPTeamsTab", "Id": 194 }, { - "CommandName": "Add-PnPTeamsTeam", "Rank": 1, "Command": "Add-PnPTeamsTeam", + "CommandName": "Add-PnPTeamsTeam", "Id": 195 }, { - "CommandName": "Add-PnPTeamsUser", "Rank": 1, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Add-PnPTeamsUser", "Id": 196 }, { - "CommandName": "Add-PnPTeamsUser", "Rank": 2, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Add-PnPTeamsUser", "Id": 197 }, { - "CommandName": "Add-PnPTeamsUser", "Rank": 3, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "CommandName": "Add-PnPTeamsUser", "Id": 198 }, { - "CommandName": "Add-PnPTeamsUser", "Rank": 4, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "CommandName": "Add-PnPTeamsUser", "Id": 199 }, { - "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Add-PnPTenantCdnOrigin", "Id": 200 }, { - "CommandName": "Add-PnPTenantSequence", "Rank": 1, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequence", "Id": 201 }, { - "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequenceSite", "Id": 202 }, { - "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "CommandName": "Add-PnPTenantSequenceSubSite", "Id": 203 }, { - "CommandName": "Add-PnPTermToTerm", "Rank": 1, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "CommandName": "Add-PnPTermToTerm", "Id": 204 }, { - "CommandName": "Add-PnPView", "Rank": 1, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "CommandName": "Add-PnPView", "Id": 205 }, { - "CommandName": "Add-PnPView", "Rank": 2, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "CommandName": "Add-PnPView", "Id": 206 }, { - "CommandName": "Add-PnPView", "Rank": 3, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", + "CommandName": "Add-PnPView", "Id": 207 }, { - "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 1, "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\"", + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 208 }, { - "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 2, "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\"", + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 209 }, { - "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 3, "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\"", + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 210 }, { - "CommandName": "Add-PnPWebhookSubscription", "Rank": 1, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "CommandName": "Add-PnPWebhookSubscription", "Id": 211 }, { - "CommandName": "Add-PnPWebhookSubscription", "Rank": 2, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "CommandName": "Add-PnPWebhookSubscription", "Id": 212 }, { - "CommandName": "Add-PnPWebhookSubscription", "Rank": 3, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", + "CommandName": "Add-PnPWebhookSubscription", "Id": 213 }, { - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 1, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "CommandName": "Add-PnPWebPartToWebPartPage", "Id": 214 }, { - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 2, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "CommandName": "Add-PnPWebPartToWebPartPage", "Id": 215 }, { - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 1, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "CommandName": "Add-PnPWebPartToWikiPage", "Id": 216 }, { - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 2, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "CommandName": "Add-PnPWebPartToWikiPage", "Id": 217 }, { - "CommandName": "Add-PnPWikiPage", "Rank": 1, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "CommandName": "Add-PnPWikiPage", "Id": 218 }, { - "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupMember", "Id": 219 }, { - "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupOwner", "Id": 220 }, { - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "CommandName": "Clear-PnPDefaultColumnValues", "Id": 221 }, { - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "CommandName": "Clear-PnPDefaultColumnValues", "Id": 222 }, { - "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Clear-PnPListItemAsRecord", "Id": 223 }, { - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Id": 224 }, { - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Id": 225 }, { - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Clear-PnpRecycleBinItem", "Id": 226 }, { - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "CommandName": "Clear-PnpRecycleBinItem", "Id": 227 }, { - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "CommandName": "Clear-PnpRecycleBinItem", "Id": 228 }, { - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, "Command": "Clear-PnPTenantAppCatalogUrl", + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Id": 229 }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 1, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 230 }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 231 }, { - "CommandName": "Connect-PnPOnline", "Rank": 1, "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", + "CommandName": "Connect-PnPOnline", "Id": 232 }, { - "CommandName": "Convert-PnPFile", "Rank": 1, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", + "CommandName": "Convert-PnPFile", "Id": 233 }, { - "CommandName": "Convert-PnPFile", "Rank": 2, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", + "CommandName": "Convert-PnPFile", "Id": 234 }, { - "CommandName": "Convert-PnPFile", "Rank": 3, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", + "CommandName": "Convert-PnPFile", "Id": 235 }, { - "CommandName": "Convert-PnPFile", "Rank": 4, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", + "CommandName": "Convert-PnPFile", "Id": 236 }, { - "CommandName": "Convert-PnPFile", "Rank": 5, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", + "CommandName": "Convert-PnPFile", "Id": 237 }, { - "CommandName": "Convert-PnPFile", "Rank": 6, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", + "CommandName": "Convert-PnPFile", "Id": 238 }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 239 }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 240 }, { - "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, "Command": "Convert-PnPSiteTemplate -Path template.xml", + "CommandName": "Convert-PnPSiteTemplate", "Id": 241 }, { - "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "CommandName": "Convert-PnPSiteTemplate", "Id": 242 }, { - "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "CommandName": "Convert-PnPSiteTemplate", "Id": 243 }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 244 }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 245 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 1, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", "Id": 246 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 2, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "CommandName": "ConvertTo-PnPPage", "Id": 247 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 3, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "CommandName": "ConvertTo-PnPPage", "Id": 248 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 4, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "CommandName": "ConvertTo-PnPPage", "Id": 249 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 5, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", "Id": 250 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 6, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "CommandName": "ConvertTo-PnPPage", "Id": 251 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 7, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", "Id": 252 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 8, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", "Id": 253 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 9, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", "Id": 254 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 10, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "CommandName": "ConvertTo-PnPPage", "Id": 255 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 11, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "CommandName": "ConvertTo-PnPPage", "Id": 256 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 12, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", "Id": 257 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 13, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", "Id": 258 }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 14, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "CommandName": "ConvertTo-PnPPage", "Id": 259 }, { - "CommandName": "Copy-PnPFile", "Rank": 1, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", "Id": 260 }, { - "CommandName": "Copy-PnPFile", "Rank": 2, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFile", "Id": 261 }, { - "CommandName": "Copy-PnPFile", "Rank": 3, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "CommandName": "Copy-PnPFile", "Id": 262 }, { - "CommandName": "Copy-PnPFile", "Rank": 4, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", "Id": 263 }, { - "CommandName": "Copy-PnPFile", "Rank": 5, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFile", "Id": 264 }, { - "CommandName": "Copy-PnPFile", "Rank": 6, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "CommandName": "Copy-PnPFile", "Id": 265 }, { - "CommandName": "Copy-PnPFile", "Rank": 7, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFile", "Id": 266 }, { - "CommandName": "Copy-PnPFile", "Rank": 8, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", "Id": 267 }, { - "CommandName": "Copy-PnPFile", "Rank": 9, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", "Id": 268 }, { - "CommandName": "Copy-PnPFile", "Rank": 10, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFile", "Id": 269 }, { - "CommandName": "Copy-PnPFolder", "Rank": 1, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", "Id": 270 }, { - "CommandName": "Copy-PnPFolder", "Rank": 2, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFolder", "Id": 271 }, { - "CommandName": "Copy-PnPFolder", "Rank": 3, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "CommandName": "Copy-PnPFolder", "Id": 272 }, { - "CommandName": "Copy-PnPFolder", "Rank": 4, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", "Id": 273 }, { - "CommandName": "Copy-PnPFolder", "Rank": 5, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFolder", "Id": 274 }, { - "CommandName": "Copy-PnPFolder", "Rank": 6, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "CommandName": "Copy-PnPFolder", "Id": 275 }, { - "CommandName": "Copy-PnPFolder", "Rank": 7, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFolder", "Id": 276 }, { - "CommandName": "Copy-PnPFolder", "Rank": 8, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", "Id": 277 }, { - "CommandName": "Copy-PnPFolder", "Rank": 9, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", "Id": 278 }, { - "CommandName": "Copy-PnPFolder", "Rank": 10, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFolder", "Id": 279 }, { - "CommandName": "Copy-PnPItemProxy", "Rank": 1, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "CommandName": "Copy-PnPItemProxy", "Id": 280 }, { - "CommandName": "Copy-PnPList", "Rank": 1, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "CommandName": "Copy-PnPList", "Id": 281 }, { - "CommandName": "Copy-PnPList", "Rank": 2, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "CommandName": "Copy-PnPList", "Id": 282 }, { - "CommandName": "Copy-PnPList", "Rank": 3, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "CommandName": "Copy-PnPList", "Id": 283 }, { - "CommandName": "Copy-PnPList", "Rank": 4, "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", + "CommandName": "Copy-PnPList", "Id": 284 }, { - "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "CommandName": "Copy-PnPTeamsTeam", "Id": 285 }, { - "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "CommandName": "Copy-PnPTeamsTeam", "Id": 286 }, { - "CommandName": "Copy-PnPTeamsTeam", "Rank": 3, "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", + "CommandName": "Copy-PnPTeamsTeam", "Id": 287 }, { - "CommandName": "Copy-PnPTeamsTeam", "Rank": 4, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "CommandName": "Copy-PnPTeamsTeam", "Id": 288 }, { - "CommandName": "Disable-PnPFeature", "Rank": 1, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Disable-PnPFeature", "Id": 289 }, { - "CommandName": "Disable-PnPFeature", "Rank": 2, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Disable-PnPFeature", "Id": 290 }, { - "CommandName": "Disable-PnPFeature", "Rank": 3, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Disable-PnPFeature", "Id": 291 }, { - "CommandName": "Disable-PnPPageScheduling", "Rank": 1, "Command": "Disable-PnPPageScheduling", + "CommandName": "Disable-PnPPageScheduling", "Id": 292 }, { - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, "Command": "Disable-PnPPowerShellTelemetry", + "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 293 }, { - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, "Command": "Disable-PnPPowerShellTelemetry -Force", + "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 294 }, { - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, "Command": "Disable-PnPSharingForNonOwnersOfSite", + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Id": 295 }, { - "CommandName": "Disable-PnPSiteClassification", "Rank": 1, "Command": "Disable-PnPSiteClassification", + "CommandName": "Disable-PnPSiteClassification", "Id": 296 }, { - "CommandName": "Disconnect-PnPOnline", "Rank": 1, "Command": "Disconnect-PnPOnline", + "CommandName": "Disconnect-PnPOnline", "Id": 297 }, { - "CommandName": "Enable-PnPCommSite", "Rank": 1, "Command": "Enable-PnPCommSite", + "CommandName": "Enable-PnPCommSite", "Id": 298 }, { - "CommandName": "Enable-PnPCommSite", "Rank": 2, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "CommandName": "Enable-PnPCommSite", "Id": 299 }, { - "CommandName": "Enable-PnPFeature", "Rank": 1, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Enable-PnPFeature", "Id": 300 }, { - "CommandName": "Enable-PnPFeature", "Rank": 2, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Enable-PnPFeature", "Id": 301 }, { - "CommandName": "Enable-PnPFeature", "Rank": 3, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Enable-PnPFeature", "Id": 302 }, { - "CommandName": "Enable-PnPPageScheduling", "Rank": 1, "Command": "Enable-PnPPageScheduling", + "CommandName": "Enable-PnPPageScheduling", "Id": 303 }, { - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, "Command": "Enable-PnPPowerShellTelemetry", + "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 304 }, { - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, "Command": "Enable-PnPPowerShellTelemetry -Force", + "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 305 }, { - "CommandName": "Enable-PnPSiteClassification", "Rank": 1, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "CommandName": "Enable-PnPSiteClassification", "Id": 306 }, { - "CommandName": "Enable-PnPSiteClassification", "Rank": 2, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Enable-PnPSiteClassification", "Id": 307 }, { - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "CommandName": "Export-PnPListToSiteTemplate", "Id": 308 }, { - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "CommandName": "Export-PnPListToSiteTemplate", "Id": 309 }, { - "CommandName": "Export-PnPPage", "Rank": 1, "Command": "Export-PnPPage -Identity Home.aspx", + "CommandName": "Export-PnPPage", "Id": 310 }, { - "CommandName": "Export-PnPPageMapping", "Rank": 1, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", "Id": 311 }, { - "CommandName": "Export-PnPPageMapping", "Rank": 2, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", "Id": 312 }, { - "CommandName": "Export-PnPPageMapping", "Rank": 3, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", "Id": 313 }, { - "CommandName": "Export-PnPTaxonomy", "Rank": 1, "Command": "Export-PnPTaxonomy", + "CommandName": "Export-PnPTaxonomy", "Id": 314 }, { - "CommandName": "Export-PnPTaxonomy", "Rank": 2, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "CommandName": "Export-PnPTaxonomy", "Id": 315 }, { - "CommandName": "Export-PnPTaxonomy", "Rank": 3, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "CommandName": "Export-PnPTaxonomy", "Id": 316 }, { - "CommandName": "Export-PnPTaxonomy", "Rank": 4, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "CommandName": "Export-PnPTaxonomy", "Id": 317 }, { - "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, "Command": "Export-PnPTermGroupToXml", + "CommandName": "Export-PnPTermGroupToXml", "Id": 318 }, { - "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, "Command": "Export-PnPTermGroupToXml -Out output.xml", + "CommandName": "Export-PnPTermGroupToXml", "Id": 319 }, { - "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "CommandName": "Export-PnPTermGroupToXml", "Id": 320 }, { - "CommandName": "Export-PnPUserInfo", "Rank": 1, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "CommandName": "Export-PnPUserInfo", "Id": 321 }, { - "CommandName": "Export-PnPUserInfo", "Rank": 2, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", + "CommandName": "Export-PnPUserInfo", "Id": 322 }, { - "CommandName": "Export-PnPUserProfile", "Rank": 1, "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Export-PnPUserProfile", "Id": 323 }, { - "CommandName": "Export-PnPUserProfile", "Rank": 2, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "CommandName": "Export-PnPUserProfile", "Id": 324 }, { - "CommandName": "Find-PnPFile", "Rank": 1, "Command": "Find-PnPFile -Match *.master", + "CommandName": "Find-PnPFile", "Id": 325 }, { - "CommandName": "Find-PnPFile", "Rank": 2, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "CommandName": "Find-PnPFile", "Id": 326 }, { - "CommandName": "Find-PnPFile", "Rank": 3, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "CommandName": "Find-PnPFile", "Id": 327 }, { - "CommandName": "Get-PnPAccessToken", "Rank": 1, "Command": "Get-PnPAccessToken", + "CommandName": "Get-PnPAccessToken", "Id": 328 }, { - "CommandName": "Get-PnPAccessToken", "Rank": 2, "Command": "Get-PnPAccessToken -Decoded", + "CommandName": "Get-PnPAccessToken", "Id": 329 }, { - "CommandName": "Get-PnPAccessToken", "Rank": 3, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "CommandName": "Get-PnPAccessToken", "Id": 330 }, { - "CommandName": "Get-PnPAccessToken", "Rank": 4, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "CommandName": "Get-PnPAccessToken", "Id": 331 }, { - "CommandName": "Get-PnPAccessToken", "Rank": 5, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "CommandName": "Get-PnPAccessToken", "Id": 332 }, { - "CommandName": "Get-PnPAlert", "Rank": 1, "Command": "Get-PnPAlert", + "CommandName": "Get-PnPAlert", "Id": 333 }, { - "CommandName": "Get-PnPAlert", "Rank": 2, "Command": "Get-PnPAlert -List \"Demo List\"", + "CommandName": "Get-PnPAlert", "Id": 334 }, { - "CommandName": "Get-PnPAlert", "Rank": 3, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPAlert", "Id": 335 }, { - "CommandName": "Get-PnPAlert", "Rank": 4, "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "CommandName": "Get-PnPAlert", "Id": 336 }, { - "CommandName": "Get-PnPAlert", "Rank": 5, "Command": "Get-PnPAlert -AllUsers", + "CommandName": "Get-PnPAlert", "Id": 337 }, { - "CommandName": "Get-PnPAlert", "Rank": 6, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "CommandName": "Get-PnPAlert", "Id": 338 }, { - "CommandName": "Get-PnPApp", "Rank": 1, "Command": "Get-PnPApp", + "CommandName": "Get-PnPApp", "Id": 339 }, { - "CommandName": "Get-PnPApp", "Rank": 2, "Command": "Get-PnPApp -Scope Site", + "CommandName": "Get-PnPApp", "Id": 340 }, { - "CommandName": "Get-PnPApp", "Rank": 3, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPApp", "Id": 341 }, { - "CommandName": "Get-PnPAppErrors", "Rank": 1, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "CommandName": "Get-PnPAppErrors", "Id": 342 }, { - "CommandName": "Get-PnPAppErrors", "Rank": 2, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "CommandName": "Get-PnPAppErrors", "Id": 343 }, { - "CommandName": "Get-PnPAppInfo", "Rank": 1, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "CommandName": "Get-PnPAppInfo", "Id": 344 }, { - "CommandName": "Get-PnPAppInfo", "Rank": 2, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPAppInfo", "Id": 345 }, { - "CommandName": "Get-PnPAppInfo", "Rank": 3, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "CommandName": "Get-PnPAppInfo", "Id": 346 }, { - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, "Command": "Get-PnPApplicationCustomizer", + "CommandName": "Get-PnPApplicationCustomizer", "Id": 347 }, { - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPApplicationCustomizer", "Id": 348 }, { - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "CommandName": "Get-PnPApplicationCustomizer", "Id": 349 }, { - "CommandName": "Get-PnPAuditing", "Rank": 1, "Command": "Get-PnPAuditing", + "CommandName": "Get-PnPAuditing", "Id": 350 }, { - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, "Command": "Get-PnPAuthenticationRealm", + "CommandName": "Get-PnPAuthenticationRealm", "Id": 351 }, { - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "CommandName": "Get-PnPAuthenticationRealm", "Id": 352 }, { - "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, "Command": "Get-PnPAvailableLanguage", + "CommandName": "Get-PnPAvailableLanguage", "Id": 353 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, "Command": "Get-PnPAvailableSensitivityLabel", + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 354 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 355 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 356 }, { - "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, "Command": "Get-PnPAvailableSiteClassification", + "CommandName": "Get-PnPAvailableSiteClassification", "Id": 357 }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, "Command": "Get-PnPAzureACSPrincipal", + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 358 }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 359 }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 360 }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 361 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 362 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 363 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 364 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, "Command": "Get-PnPAzureADActivityReportSignIn", + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 365 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 366 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 367 }, { - "CommandName": "Get-PnPAzureADApp", "Rank": 1, "Command": "Get-PnPAzureADApp", + "CommandName": "Get-PnPAzureADApp", "Id": 368 }, { - "CommandName": "Get-PnPAzureADApp", "Rank": 2, "Command": "Get-PnPAzureADApp -Identity MyApp", + "CommandName": "Get-PnPAzureADApp", "Id": 369 }, { - "CommandName": "Get-PnPAzureADApp", "Rank": 3, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADApp", "Id": 370 }, { - "CommandName": "Get-PnPAzureADApp", "Rank": 4, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADApp", "Id": 371 }, { - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, "Command": "Get-PnPAzureADAppPermission", + "CommandName": "Get-PnPAzureADAppPermission", "Id": 372 }, { - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "CommandName": "Get-PnPAzureADAppPermission", "Id": 373 }, { - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADAppPermission", "Id": 374 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, "Command": "Get-PnPAzureADAppSitePermission", + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 375 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 376 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 377 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 378 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 379 }, { - "CommandName": "Get-PnPAzureADGroup", "Rank": 1, "Command": "Get-PnPAzureADGroup", + "CommandName": "Get-PnPAzureADGroup", "Id": 380 }, { - "CommandName": "Get-PnPAzureADGroup", "Rank": 2, "Command": "Get-PnPAzureADGroup -Identity $groupId", + "CommandName": "Get-PnPAzureADGroup", "Id": 381 }, { - "CommandName": "Get-PnPAzureADGroup", "Rank": 3, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "CommandName": "Get-PnPAzureADGroup", "Id": 382 }, { - "CommandName": "Get-PnPAzureADGroup", "Rank": 4, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPAzureADGroup", "Id": 383 }, { - "CommandName": "Get-PnPAzureADGroup", "Rank": 5, "Command": "Get-PnPAzureADGroup -Identity $group", + "CommandName": "Get-PnPAzureADGroup", "Id": 384 }, { - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupMember", "Id": 385 }, { - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, "Command": "Get-PnPAzureADGroupMember -Identity $group", + "CommandName": "Get-PnPAzureADGroupMember", "Id": 386 }, { - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupOwner", "Id": 387 }, { - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "CommandName": "Get-PnPAzureADGroupOwner", "Id": 388 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, "Command": "Get-PnPAzureADServicePrincipal", + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 389 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 390 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 391 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 392 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 393 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 394 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 395 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 396 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 397 }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 1, "Command": "Get-PnPAzureADUser", + "CommandName": "Get-PnPAzureADUser", "Id": 398 }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 2, "Command": "Get-PnPAzureADUser -EndIndex 50", + "CommandName": "Get-PnPAzureADUser", "Id": 399 }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 3, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPAzureADUser", "Id": 400 }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 4, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "CommandName": "Get-PnPAzureADUser", "Id": 401 }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 5, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "CommandName": "Get-PnPAzureADUser", "Id": 402 }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 6, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "CommandName": "Get-PnPAzureADUser", "Id": 403 }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 7, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "CommandName": "Get-PnPAzureADUser", "Id": 404 }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 8, "Command": "Get-PnPAzureADUser -Delta", + "CommandName": "Get-PnPAzureADUser", "Id": 405 }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 9, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "CommandName": "Get-PnPAzureADUser", "Id": 406 }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 10, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "CommandName": "Get-PnPAzureADUser", "Id": 407 }, { - "CommandName": "Get-PnPAzureCertificate", "Rank": 1, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "CommandName": "Get-PnPAzureCertificate", "Id": 408 }, { - "CommandName": "Get-PnPAzureCertificate", "Rank": 2, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "CommandName": "Get-PnPAzureCertificate", "Id": 409 }, { - "CommandName": "Get-PnPAzureCertificate", "Rank": 3, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "CommandName": "Get-PnPAzureCertificate", "Id": 410 }, { - "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, "Command": "Get-PnPBrowserIdleSignout", + "CommandName": "Get-PnPBrowserIdleSignout", "Id": 411 }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 412 }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, "Command": "Get-PnPBuiltInDesignPackageVisibility", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 413 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, "Command": "Get-PnPBuiltInSiteTemplateSettings", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 414 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 415 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 416 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 417 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 418 }, { - "CommandName": "Get-PnPChangeLog", "Rank": 1, "Command": "Get-PnPChangeLog", + "CommandName": "Get-PnPChangeLog", "Id": 419 }, { - "CommandName": "Get-PnPChangeLog", "Rank": 2, "Command": "Get-PnPChangeLog -Nightly", + "CommandName": "Get-PnPChangeLog", "Id": 420 }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 421 }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 422 }, { - "CommandName": "Get-PnPContainer", "Rank": 1, "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", + "CommandName": "Get-PnPContainer", "Id": 423 }, { - "CommandName": "Get-PnPContainer", "Rank": 2, "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "CommandName": "Get-PnPContainer", "Id": 424 }, { - "CommandName": "Get-PnPContainer", "Rank": 3, "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", + "CommandName": "Get-PnPContainer", "Id": 425 }, { - "CommandName": "Get-PnPContainerTypeConfiguration", "Rank": 1, "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", + "CommandName": "Get-PnPContainerTypeConfiguration", "Id": 426 }, { - "CommandName": "Get-PnPContentType", "Rank": 1, "Command": "Get-PnPContentType", + "CommandName": "Get-PnPContentType", "Id": 427 }, { - "CommandName": "Get-PnPContentType", "Rank": 2, "Command": "Get-PnPContentType -InSiteHierarchy", + "CommandName": "Get-PnPContentType", "Id": 428 }, { - "CommandName": "Get-PnPContentType", "Rank": 3, "Command": "Get-PnPContentType -Identity \"Project Document\"", + "CommandName": "Get-PnPContentType", "Id": 429 }, { - "CommandName": "Get-PnPContentType", "Rank": 4, "Command": "Get-PnPContentType -List \"Documents\"", + "CommandName": "Get-PnPContentType", "Id": 430 }, { - "CommandName": "Get-PnPContentType", "Rank": 5, "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "CommandName": "Get-PnPContentType", "Id": 431 }, { - "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "CommandName": "Get-PnPContentTypePublishingStatus", "Id": 432 }, { - "CommandName": "Get-PnPCustomAction", "Rank": 1, "Command": "Get-PnPCustomAction", + "CommandName": "Get-PnPCustomAction", "Id": 433 }, { - "CommandName": "Get-PnPCustomAction", "Rank": 2, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPCustomAction", "Id": 434 }, { - "CommandName": "Get-PnPCustomAction", "Rank": 3, "Command": "Get-PnPCustomAction -Scope web", + "CommandName": "Get-PnPCustomAction", "Id": 435 }, { - "CommandName": "Get-PnPDeletedContainer", "Rank": 1, "Command": "Get-PnPDeletedContainer", + "CommandName": "Get-PnPDeletedContainer", "Id": 436 }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, "Command": "Get-PnPDeletedMicrosoft365Group", + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 437 }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 438 }, { - "CommandName": "Get-PnPDeletedTeam", "Rank": 1, "Command": "Get-PnPDeletedTeam", + "CommandName": "Get-PnPDeletedTeam", "Id": 439 }, { - "CommandName": "Get-PnPDiagnostics", "Rank": 1, "Command": "Get-PnPDiagnostics", + "CommandName": "Get-PnPDiagnostics", "Id": 440 }, { - "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, "Command": "Get-PnPDisableSpacesActivation", + "CommandName": "Get-PnPDisableSpacesActivation", "Id": 441 }, { - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "CommandName": "Get-PnPDocumentSetTemplate", "Id": 442 }, { - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "CommandName": "Get-PnPDocumentSetTemplate", "Id": 443 }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 1, "Command": "Get-PnPEventReceiver", + "CommandName": "Get-PnPEventReceiver", "Id": 444 }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 2, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver", "Id": 445 }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 3, "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver", "Id": 446 }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 4, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "CommandName": "Get-PnPEventReceiver", "Id": 447 }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 5, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver", "Id": 448 }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 6, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver", "Id": 449 }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 7, "Command": "Get-PnPEventReceiver -Scope Site", + "CommandName": "Get-PnPEventReceiver", "Id": 450 }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 8, "Command": "Get-PnPEventReceiver -Scope Web", + "CommandName": "Get-PnPEventReceiver", "Id": 451 }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 9, "Command": "Get-PnPEventReceiver -Scope All", + "CommandName": "Get-PnPEventReceiver", "Id": 452 }, { - "CommandName": "Get-PnPException", "Rank": 1, "Command": "Get-PnPException", + "CommandName": "Get-PnPException", "Id": 453 }, { - "CommandName": "Get-PnPException", "Rank": 2, "Command": "Get-PnPException -All", + "CommandName": "Get-PnPException", "Id": 454 }, { - "CommandName": "Get-PnPExternalUser", "Rank": 1, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "CommandName": "Get-PnPExternalUser", "Id": 455 }, { - "CommandName": "Get-PnPExternalUser", "Rank": 2, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "CommandName": "Get-PnPExternalUser", "Id": 456 }, { - "CommandName": "Get-PnPFeature", "Rank": 1, "Command": "Get-PnPFeature", + "CommandName": "Get-PnPFeature", "Id": 457 }, { - "CommandName": "Get-PnPFeature", "Rank": 2, "Command": "Get-PnPFeature -Scope Site", + "CommandName": "Get-PnPFeature", "Id": 458 }, { - "CommandName": "Get-PnPFeature", "Rank": 3, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPFeature", "Id": 459 }, { - "CommandName": "Get-PnPFeature", "Rank": 4, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "CommandName": "Get-PnPFeature", "Id": 460 }, { - "CommandName": "Get-PnPField", "Rank": 1, "Command": "Get-PnPField", + "CommandName": "Get-PnPField", "Id": 461 }, { - "CommandName": "Get-PnPField", "Rank": 2, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Get-PnPField", "Id": 462 }, { - "CommandName": "Get-PnPField", "Rank": 3, "Command": "Get-PnPField -Group \"Custom Columns\"", + "CommandName": "Get-PnPField", "Id": 463 }, { - "CommandName": "Get-PnPFile", "Rank": 1, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "CommandName": "Get-PnPFile", "Id": 464 }, { - "CommandName": "Get-PnPFile", "Rank": 2, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "CommandName": "Get-PnPFile", "Id": 465 }, { - "CommandName": "Get-PnPFile", "Rank": 3, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "CommandName": "Get-PnPFile", "Id": 466 }, { - "CommandName": "Get-PnPFile", "Rank": 4, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "CommandName": "Get-PnPFile", "Id": 467 }, { - "CommandName": "Get-PnPFile", "Rank": 5, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "CommandName": "Get-PnPFile", "Id": 468 }, { - "CommandName": "Get-PnPFile", "Rank": 6, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "CommandName": "Get-PnPFile", "Id": 469 }, { - "CommandName": "Get-PnPFile", "Rank": 7, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "CommandName": "Get-PnPFile", "Id": 470 }, { - "CommandName": "Get-PnPFileAnalyticsData", "Rank": 1, "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"", + "CommandName": "Get-PnPFileAnalyticsData", "Id": 471 }, { - "CommandName": "Get-PnPFileAnalyticsData", "Rank": 2, "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays", + "CommandName": "Get-PnPFileAnalyticsData", "Id": 472 }, { - "CommandName": "Get-PnPFileAnalyticsData", "Rank": 3, "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", + "CommandName": "Get-PnPFileAnalyticsData", "Id": 473 }, { - "CommandName": "Get-PnPFileInFolder", "Rank": 1, "Command": "Get-PnPFileInFolder", + "CommandName": "Get-PnPFileInFolder", "Id": 474 }, { - "CommandName": "Get-PnPFileInFolder", "Rank": 2, "Command": "Get-PnPFileInFolder -Recurse", + "CommandName": "Get-PnPFileInFolder", "Id": 475 }, { - "CommandName": "Get-PnPFileInFolder", "Rank": 3, "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFileInFolder", "Id": 476 }, { - "CommandName": "Get-PnPFileInFolder", "Rank": 4, "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFileInFolder", "Id": 477 }, { - "CommandName": "Get-PnPFileInFolder", "Rank": 5, "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", + "CommandName": "Get-PnPFileInFolder", "Id": 478 }, { - "CommandName": "Get-PnPFileSharingLink", "Rank": 1, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Get-PnPFileSharingLink", "Id": 479 }, { - "CommandName": "Get-PnPFileVersion", "Rank": 1, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "CommandName": "Get-PnPFileVersion", "Id": 480 }, { - "CommandName": "Get-PnPFileVersion", "Rank": 2, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "CommandName": "Get-PnPFileVersion", "Id": 481 }, { - "CommandName": "Get-PnPFlow", "Rank": 1, "Command": "Get-PnPFlow -AsAdmin", + "CommandName": "Get-PnPFlow", "Id": 482 }, { - "CommandName": "Get-PnPFlow", "Rank": 2, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "CommandName": "Get-PnPFlow", "Id": 483 }, { - "CommandName": "Get-PnPFlow", "Rank": 3, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "CommandName": "Get-PnPFlow", "Id": 484 }, { - "CommandName": "Get-PnPFlowOwner", "Rank": 1, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "CommandName": "Get-PnPFlowOwner", "Id": 485 }, { - "CommandName": "Get-PnPFolder", "Rank": 1, "Command": "Get-PnPFolder", + "CommandName": "Get-PnPFolder", "Id": 486 }, { - "CommandName": "Get-PnPFolder", "Rank": 2, "Command": "Get-PnPFolder -CurrentWebRootFolder", + "CommandName": "Get-PnPFolder", "Id": 487 }, { - "CommandName": "Get-PnPFolder", "Rank": 3, "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "CommandName": "Get-PnPFolder", "Id": 488 }, { - "CommandName": "Get-PnPFolder", "Rank": 4, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "CommandName": "Get-PnPFolder", "Id": 489 }, { - "CommandName": "Get-PnPFolder", "Rank": 5, "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", + "CommandName": "Get-PnPFolder", "Id": 490 }, { - "CommandName": "Get-PnPFolder", "Rank": 6, "Command": "Get-PnPFolder -List \"Shared Documents\"", + "CommandName": "Get-PnPFolder", "Id": 491 }, { - "CommandName": "Get-PnPFolderInFolder", "Rank": 1, "Command": "Get-PnPFolderInFolder", + "CommandName": "Get-PnPFolderInFolder", "Id": 492 }, { - "CommandName": "Get-PnPFolderInFolder", "Rank": 2, "Command": "Get-PnPFolderInFolder -Recurse", + "CommandName": "Get-PnPFolderInFolder", "Id": 493 }, { - "CommandName": "Get-PnPFolderInFolder", "Rank": 3, "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderInFolder", "Id": 494 }, { - "CommandName": "Get-PnPFolderInFolder", "Rank": 4, "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "CommandName": "Get-PnPFolderInFolder", "Id": 495 }, { - "CommandName": "Get-PnPFolderInFolder", "Rank": 5, "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "CommandName": "Get-PnPFolderInFolder", "Id": 496 }, { - "CommandName": "Get-PnPFolderInFolder", "Rank": 6, "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", + "CommandName": "Get-PnPFolderInFolder", "Id": 497 }, { - "CommandName": "Get-PnPFolderItem", "Rank": 1, "Command": "Get-PnPFolderItem", + "CommandName": "Get-PnPFolderItem", "Id": 498 }, { - "CommandName": "Get-PnPFolderItem", "Rank": 2, "Command": "Get-PnPFolderItem -Recurse", + "CommandName": "Get-PnPFolderItem", "Id": 499 }, { - "CommandName": "Get-PnPFolderItem", "Rank": 3, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderItem", "Id": 500 }, { - "CommandName": "Get-PnPFolderItem", "Rank": 4, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderItem", "Id": 501 }, { - "CommandName": "Get-PnPFolderItem", "Rank": 5, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "CommandName": "Get-PnPFolderItem", "Id": 502 }, { - "CommandName": "Get-PnPFolderItem", "Rank": 6, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderItem", "Id": 503 }, { - "CommandName": "Get-PnPFolderSharingLink", "Rank": 1, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Get-PnPFolderSharingLink", "Id": 504 }, { - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, "Command": "Get-PnPFolderStorageMetric", + "CommandName": "Get-PnPFolderStorageMetric", "Id": 505 }, { - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "CommandName": "Get-PnPFolderStorageMetric", "Id": 506 }, { - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "CommandName": "Get-PnPFolderStorageMetric", "Id": 507 }, { - "CommandName": "Get-PnPFooter", "Rank": 1, "Command": "Get-PnPFooter", + "CommandName": "Get-PnPFooter", "Id": 508 }, { - "CommandName": "Get-PnPGraphAccessToken", "Rank": 1, "Command": "Get-PnPGraphAccessToken", + "CommandName": "Get-PnPGraphAccessToken", "Id": 509 }, { - "CommandName": "Get-PnPGraphAccessToken", "Rank": 2, "Command": "Get-PnPGraphAccessToken -Decoded", + "CommandName": "Get-PnPGraphAccessToken", "Id": 510 }, { - "CommandName": "Get-PnPGraphSubscription", "Rank": 1, "Command": "Get-PnPGraphSubscription", + "CommandName": "Get-PnPGraphSubscription", "Id": 511 }, { - "CommandName": "Get-PnPGraphSubscription", "Rank": 2, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPGraphSubscription", "Id": 512 }, { - "CommandName": "Get-PnPGroup", "Rank": 1, "Command": "Get-PnPGroup", + "CommandName": "Get-PnPGroup", "Id": 513 }, { - "CommandName": "Get-PnPGroup", "Rank": 2, "Command": "Get-PnPGroup -Identity 'My Site Users'", + "CommandName": "Get-PnPGroup", "Id": 514 }, { - "CommandName": "Get-PnPGroup", "Rank": 3, "Command": "Get-PnPGroup -AssociatedMemberGroup", + "CommandName": "Get-PnPGroup", "Id": 515 }, { - "CommandName": "Get-PnPGroupMember", "Rank": 1, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "CommandName": "Get-PnPGroupMember", "Id": 516 }, { - "CommandName": "Get-PnPGroupMember", "Rank": 2, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "CommandName": "Get-PnPGroupMember", "Id": 517 }, { - "CommandName": "Get-PnPGroupPermissions", "Rank": 1, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "CommandName": "Get-PnPGroupPermissions", "Id": 518 }, { - "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, "Command": "Get-PnPHideDefaultThemes", + "CommandName": "Get-PnPHideDefaultThemes", "Id": 519 }, { - "CommandName": "Get-PnPHomePage", "Rank": 1, "Command": "Get-PnPHomePage", + "CommandName": "Get-PnPHomePage", "Id": 520 }, { - "CommandName": "Get-PnPHomeSite", "Rank": 1, "Command": "Get-PnPHomeSite", + "CommandName": "Get-PnPHomeSite", "Id": 521 }, { - "CommandName": "Get-PnPHomeSite", "Rank": 2, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "CommandName": "Get-PnPHomeSite", "Id": 522 }, { - "CommandName": "Get-PnPHomeSite", "Rank": 3, "Command": "Get-PnPHomeSite -Detailed", + "CommandName": "Get-PnPHomeSite", "Id": 523 }, { - "CommandName": "Get-PnPHubSite", "Rank": 1, "Command": "Get-PnPHubSite", + "CommandName": "Get-PnPHubSite", "Id": 524 }, { - "CommandName": "Get-PnPHubSite", "Rank": 2, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSite", "Id": 525 }, { - "CommandName": "Get-PnPHubSite", "Rank": 3, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "CommandName": "Get-PnPHubSite", "Id": 526 }, { - "CommandName": "Get-PnPHubSiteChild", "Rank": 1, "Command": "Get-PnPHubSiteChild", + "CommandName": "Get-PnPHubSiteChild", "Id": 527 }, { - "CommandName": "Get-PnPHubSiteChild", "Rank": 2, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSiteChild", "Id": 528 }, { - "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, "Command": "Get-PnPInPlaceRecordsManagement", + "CommandName": "Get-PnPInPlaceRecordsManagement", "Id": 529 }, { - "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "CommandName": "Get-PnPIsSiteAliasAvailable", "Id": 530 }, { - "CommandName": "Get-PnPJavaScriptLink", "Rank": 1, "Command": "Get-PnPJavaScriptLink", + "CommandName": "Get-PnPJavaScriptLink", "Id": 531 }, { - "CommandName": "Get-PnPJavaScriptLink", "Rank": 2, "Command": "Get-PnPJavaScriptLink -Scope All", + "CommandName": "Get-PnPJavaScriptLink", "Id": 532 }, { - "CommandName": "Get-PnPJavaScriptLink", "Rank": 3, "Command": "Get-PnPJavaScriptLink -Scope Web", + "CommandName": "Get-PnPJavaScriptLink", "Id": 533 }, { - "CommandName": "Get-PnPJavaScriptLink", "Rank": 4, "Command": "Get-PnPJavaScriptLink -Scope Site", + "CommandName": "Get-PnPJavaScriptLink", "Id": 534 }, { - "CommandName": "Get-PnPJavaScriptLink", "Rank": 5, "Command": "Get-PnPJavaScriptLink -Name Test", + "CommandName": "Get-PnPJavaScriptLink", "Id": 535 }, { - "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, "Command": "Get-PnPKnowledgeHubSite", + "CommandName": "Get-PnPKnowledgeHubSite", "Id": 536 }, { - "CommandName": "Get-PnPLabel", "Rank": 1, "Command": "Get-PnPLabel", + "CommandName": "Get-PnPLabel", "Id": 537 }, { - "CommandName": "Get-PnPLabel", "Rank": 2, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "CommandName": "Get-PnPLabel", "Id": 538 }, { - "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "CommandName": "Get-PnPLargeListOperationStatus", "Id": 539 }, { - "CommandName": "Get-PnPList", "Rank": 1, "Command": "Get-PnPList", + "CommandName": "Get-PnPList", "Id": 540 }, { - "CommandName": "Get-PnPList", "Rank": 2, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Get-PnPList", "Id": 541 }, { - "CommandName": "Get-PnPList", "Rank": 3, "Command": "Get-PnPList -Identity Lists/Announcements", + "CommandName": "Get-PnPList", "Id": 542 }, { - "CommandName": "Get-PnPList", "Rank": 4, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "CommandName": "Get-PnPList", "Id": 543 }, { - "CommandName": "Get-PnPList", "Rank": 5, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "CommandName": "Get-PnPList", "Id": 544 }, { - "CommandName": "Get-PnPListDesign", "Rank": 1, "Command": "Get-PnPListDesign", + "CommandName": "Get-PnPListDesign", "Id": 545 }, { - "CommandName": "Get-PnPListDesign", "Rank": 2, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPListDesign", "Id": 546 }, { - "CommandName": "Get-PnPListDesign", "Rank": 3, "Command": "Get-PnPListDesign -Identity ListEvent", + "CommandName": "Get-PnPListDesign", "Id": 547 }, { - "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "CommandName": "Get-PnPListInformationRightsManagement", "Id": 548 }, { - "CommandName": "Get-PnPListItem", "Rank": 1, "Command": "Get-PnPListItem -List Tasks", + "CommandName": "Get-PnPListItem", "Id": 549 }, { - "CommandName": "Get-PnPListItem", "Rank": 2, "Command": "Get-PnPListItem -List Tasks -Id 1", + "CommandName": "Get-PnPListItem", "Id": 550 }, { - "CommandName": "Get-PnPListItem", "Rank": 3, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "CommandName": "Get-PnPListItem", "Id": 551 }, { - "CommandName": "Get-PnPListItem", "Rank": 4, "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"", + "CommandName": "Get-PnPListItem", "Id": 552 }, { - "CommandName": "Get-PnPListItem", "Rank": 5, "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"", + "CommandName": "Get-PnPListItem", "Id": 553 }, { - "CommandName": "Get-PnPListItem", "Rank": 6, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "CommandName": "Get-PnPListItem", "Id": 554 }, { - "CommandName": "Get-PnPListItem", "Rank": 7, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "CommandName": "Get-PnPListItem", "Id": 555 }, { - "CommandName": "Get-PnPListItem", "Rank": 8, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "CommandName": "Get-PnPListItem", "Id": 556 }, { - "CommandName": "Get-PnPListItem", "Rank": 9, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "CommandName": "Get-PnPListItem", "Id": 557 }, { - "CommandName": "Get-PnPListItemAttachment", "Rank": 1, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "CommandName": "Get-PnPListItemAttachment", "Id": 558 }, { - "CommandName": "Get-PnPListItemAttachment", "Rank": 2, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "CommandName": "Get-PnPListItemAttachment", "Id": 559 }, { - "CommandName": "Get-PnPListItemComment", "Rank": 1, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "CommandName": "Get-PnPListItemComment", "Id": 560 }, { - "CommandName": "Get-PnPListItemPermission", "Rank": 1, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "CommandName": "Get-PnPListItemPermission", "Id": 561 }, { - "CommandName": "Get-PnPListItemVersion", "Rank": 1, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "CommandName": "Get-PnPListItemVersion", "Id": 562 }, { - "CommandName": "Get-PnPListPermissions", "Rank": 1, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "CommandName": "Get-PnPListPermissions", "Id": 563 }, { - "CommandName": "Get-PnPListPermissions", "Rank": 2, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "CommandName": "Get-PnPListPermissions", "Id": 564 }, { - "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "CommandName": "Get-PnPListRecordDeclaration", "Id": 565 }, { - "CommandName": "Get-PnPMasterPage", "Rank": 1, "Command": "Get-PnPMasterPage", + "CommandName": "Get-PnPMasterPage", "Id": 566 }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, "Command": "Get-PnPMessageCenterAnnouncement", + "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 567 }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 568 }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, "Command": "Get-PnPMicrosoft365ExpiringGroup", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 569 }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 570 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1, "Command": "Get-PnPMicrosoft365Group", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 571 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 572 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 573 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 574 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5, "Command": "Get-PnPMicrosoft365Group -Identity $group", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 575 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 576 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, "Command": "Get-PnPMicrosoft365GroupEndpoint", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 577 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 578 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 579 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 580 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 581 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 582 }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 583 }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 584 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettings", + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 585 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 586 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 587 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 588 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, "Command": "Get-PnPMicrosoft365GroupTeam", + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 589 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 590 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 591 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 592 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 593 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 594 }, { - "CommandName": "Get-PnPNavigationNode", "Rank": 1, "Command": "Get-PnPNavigationNode", + "CommandName": "Get-PnPNavigationNode", "Id": 595 }, { - "CommandName": "Get-PnPNavigationNode", "Rank": 2, "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "CommandName": "Get-PnPNavigationNode", "Id": 596 }, { - "CommandName": "Get-PnPNavigationNode", "Rank": 3, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "CommandName": "Get-PnPNavigationNode", "Id": 597 }, { - "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, "Command": "Get-PnPOrgAssetsLibrary", + "CommandName": "Get-PnPOrgAssetsLibrary", "Id": 598 }, { - "CommandName": "Get-PnPOrgNewsSite", "Rank": 1, "Command": "Get-PnPOrgNewsSite", + "CommandName": "Get-PnPOrgNewsSite", "Id": 599 }, { - "CommandName": "Get-PnPPage", "Rank": 1, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "CommandName": "Get-PnPPage", "Id": 600 }, { - "CommandName": "Get-PnPPage", "Rank": 2, "Command": "Get-PnPPage \"MyPage\"", + "CommandName": "Get-PnPPage", "Id": 601 }, { - "CommandName": "Get-PnPPage", "Rank": 3, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "CommandName": "Get-PnPPage", "Id": 602 }, { - "CommandName": "Get-PnPPage", "Rank": 4, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "CommandName": "Get-PnPPage", "Id": 603 }, { - "CommandName": "Get-PnPPageComponent", "Rank": 1, "Command": "Get-PnPPageComponent -Page Home", + "CommandName": "Get-PnPPageComponent", "Id": 604 }, { - "CommandName": "Get-PnPPageComponent", "Rank": 2, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPPageComponent", "Id": 605 }, { - "CommandName": "Get-PnPPageComponent", "Rank": 3, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "CommandName": "Get-PnPPageComponent", "Id": 606 }, { - "CommandName": "Get-PnPPlannerBucket", "Rank": 1, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerBucket", "Id": 607 }, { - "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1, "Command": "Get-PnPPlannerConfiguration", + "CommandName": "Get-PnPPlannerConfiguration", "Id": 608 }, { - "CommandName": "Get-PnPPlannerPlan", "Rank": 1, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "CommandName": "Get-PnPPlannerPlan", "Id": 609 }, { - "CommandName": "Get-PnPPlannerPlan", "Rank": 2, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "CommandName": "Get-PnPPlannerPlan", "Id": 610 }, { - "CommandName": "Get-PnPPlannerPlan", "Rank": 3, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "CommandName": "Get-PnPPlannerPlan", "Id": 611 }, { - "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Get-PnPPlannerRosterMember", "Id": 612 }, { - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "CommandName": "Get-PnPPlannerRosterPlan", "Id": 613 }, { - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerRosterPlan", "Id": 614 }, { - "CommandName": "Get-PnPPlannerTask", "Rank": 1, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerTask", "Id": 615 }, { - "CommandName": "Get-PnPPlannerTask", "Rank": 2, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask", "Id": 616 }, { - "CommandName": "Get-PnPPlannerTask", "Rank": 3, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask", "Id": 617 }, { - "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerUserPolicy", "Id": 618 }, { - "CommandName": "Get-PnPPowerPlatformConnector", "Rank": 1, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "CommandName": "Get-PnPPowerPlatformConnector", "Id": 619 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, "Command": "Get-PnPPowerPlatformEnvironment", + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 620 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 621 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 622 }, { - "CommandName": "Get-PnPPowerPlatformSolution", "Rank": 1, "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)", + "CommandName": "Get-PnPPowerPlatformSolution", "Id": 623 }, { - "CommandName": "Get-PnPPowerPlatformSolution", "Rank": 2, "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'", + "CommandName": "Get-PnPPowerPlatformSolution", "Id": 624 }, { - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, "Command": "Get-PnPPowerShellTelemetryEnabled", + "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Id": 625 }, { - "CommandName": "Get-PnPPropertyBag", "Rank": 1, "Command": "Get-PnPPropertyBag", + "CommandName": "Get-PnPPropertyBag", "Id": 626 }, { - "CommandName": "Get-PnPPropertyBag", "Rank": 2, "Command": "Get-PnPPropertyBag -Key MyKey", + "CommandName": "Get-PnPPropertyBag", "Id": 627 }, { - "CommandName": "Get-PnPPropertyBag", "Rank": 3, "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "CommandName": "Get-PnPPropertyBag", "Id": 628 }, { - "CommandName": "Get-PnPPropertyBag", "Rank": 4, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag", "Id": 629 }, { - "CommandName": "Get-PnPPropertyBag", "Rank": 5, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag", "Id": 630 }, { - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1, "Command": "Get-PnPPublishingImageRendition", + "CommandName": "Get-PnPPublishingImageRendition", "Id": 631 }, { - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "CommandName": "Get-PnPPublishingImageRendition", "Id": 632 }, { - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3, "Command": "Get-PnPPublishingImageRendition -Identity 2", + "CommandName": "Get-PnPPublishingImageRendition", "Id": 633 }, { - "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, "Command": "Get-PnPRecycleBinItem", + "CommandName": "Get-PnPRecycleBinItem", "Id": 634 }, { - "CommandName": "Get-PnPRecycleBinItem", "Rank": 2, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "CommandName": "Get-PnPRecycleBinItem", "Id": 635 }, { - "CommandName": "Get-PnPRecycleBinItem", "Rank": 3, "Command": "Get-PnPRecycleBinItem -FirstStage", + "CommandName": "Get-PnPRecycleBinItem", "Id": 636 }, { - "CommandName": "Get-PnPRecycleBinItem", "Rank": 4, "Command": "Get-PnPRecycleBinItem -SecondStage", + "CommandName": "Get-PnPRecycleBinItem", "Id": 637 }, { - "CommandName": "Get-PnPRecycleBinItem", "Rank": 5, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "CommandName": "Get-PnPRecycleBinItem", "Id": 638 }, { - "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1, "Command": "Get-PnPRequestAccessEmails", + "CommandName": "Get-PnPRequestAccessEmails", "Id": 639 }, { - "CommandName": "Get-PnPRetentionLabel", "Rank": 1, "Command": "Get-PnPRetentionLabel", + "CommandName": "Get-PnPRetentionLabel", "Id": 640 }, { - "CommandName": "Get-PnPRetentionLabel", "Rank": 2, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "CommandName": "Get-PnPRetentionLabel", "Id": 641 }, { - "CommandName": "Get-PnPRoleDefinition", "Rank": 1, "Command": "Get-PnPRoleDefinition", + "CommandName": "Get-PnPRoleDefinition", "Id": 642 }, { - "CommandName": "Get-PnPRoleDefinition", "Rank": 2, "Command": "Get-PnPRoleDefinition -Identity Read", + "CommandName": "Get-PnPRoleDefinition", "Id": 643 }, { - "CommandName": "Get-PnPRoleDefinition", "Rank": 3, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "CommandName": "Get-PnPRoleDefinition", "Id": 644 }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 1, "Command": "Get-PnPSearchConfiguration", + "CommandName": "Get-PnPSearchConfiguration", "Id": 645 }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 2, "Command": "Get-PnPSearchConfiguration -Scope Site", + "CommandName": "Get-PnPSearchConfiguration", "Id": 646 }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 3, "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration", "Id": 647 }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 4, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration", "Id": 648 }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 5, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "CommandName": "Get-PnPSearchConfiguration", "Id": 649 }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 6, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "CommandName": "Get-PnPSearchConfiguration", "Id": 650 }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 7, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "CommandName": "Get-PnPSearchConfiguration", "Id": 651 }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 8, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "CommandName": "Get-PnPSearchConfiguration", "Id": 652 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1, "Command": "Get-PnPSearchCrawlLog", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 653 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 654 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 655 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 656 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 657 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 658 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 659 }, { - "CommandName": "Get-PnPSearchSettings", "Rank": 1, "Command": "Get-PnPSearchSettings", + "CommandName": "Get-PnPSearchSettings", "Id": 660 }, { - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, "Command": "Get-PnPServiceCurrentHealth", + "CommandName": "Get-PnPServiceCurrentHealth", "Id": 661 }, { - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "CommandName": "Get-PnPServiceCurrentHealth", "Id": 662 }, { - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, "Command": "Get-PnPServiceHealthIssue", + "CommandName": "Get-PnPServiceHealthIssue", "Id": 663 }, { - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "CommandName": "Get-PnPServiceHealthIssue", "Id": 664 }, { - "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, "Command": "Get-PnPSharePointAddIn", + "CommandName": "Get-PnPSharePointAddIn", "Id": 665 }, { - "CommandName": "Get-PnPSharePointAddIn", "Rank": 2, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "CommandName": "Get-PnPSharePointAddIn", "Id": 666 }, { - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, "Command": "Get-PnPSharingForNonOwnersOfSite", + "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Id": 667 }, { - "CommandName": "Get-PnPSite", "Rank": 1, "Command": "Get-PnPSite", + "CommandName": "Get-PnPSite", "Id": 668 }, { - "CommandName": "Get-PnPSite", "Rank": 2, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "CommandName": "Get-PnPSite", "Id": 669 }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 1, "Command": "Get-PnPSiteAnalyticsData -All", + "CommandName": "Get-PnPSiteAnalyticsData", "Id": 670 }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 2, "Command": "Get-PnPSiteAnalyticsData -LastSevenDays", + "CommandName": "Get-PnPSiteAnalyticsData", "Id": 671 }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 3, "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", + "CommandName": "Get-PnPSiteAnalyticsData", "Id": 672 }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 4, "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", + "CommandName": "Get-PnPSiteAnalyticsData", "Id": 673 }, { - "CommandName": "Get-PnPSiteClosure", "Rank": 1, "Command": "Get-PnPSiteClosure", + "CommandName": "Get-PnPSiteClosure", "Id": 674 }, { - "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1, "Command": "Get-PnPSiteCollectionAdmin", + "CommandName": "Get-PnPSiteCollectionAdmin", "Id": 675 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, "Command": "Get-PnPSiteCollectionAppCatalog", + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 676 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 677 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 678 }, { - "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, "Command": "Get-PnPSiteCollectionTermStore", + "CommandName": "Get-PnPSiteCollectionTermStore", "Id": 679 }, { - "CommandName": "Get-PnPSiteDesign", "Rank": 1, "Command": "Get-PnPSiteDesign", + "CommandName": "Get-PnPSiteDesign", "Id": 680 }, { - "CommandName": "Get-PnPSiteDesign", "Rank": 2, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesign", "Id": 681 }, { - "CommandName": "Get-PnPSiteDesignRights", "Rank": 1, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesignRights", "Id": 682 }, { - "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, "Command": "Get-PnPSiteDesignRun", + "CommandName": "Get-PnPSiteDesignRun", "Id": 683 }, { - "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignRun", "Id": 684 }, { - "CommandName": "Get-PnPSiteDesignTask", "Rank": 1, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Get-PnPSiteDesignTask", "Id": 685 }, { - "CommandName": "Get-PnPSiteDesignTask", "Rank": 2, "Command": "Get-PnPSiteDesignTask", + "CommandName": "Get-PnPSiteDesignTask", "Id": 686 }, { - "CommandName": "Get-PnPSiteDesignTask", "Rank": 3, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignTask", "Id": 687 }, { - "CommandName": "Get-PnPSiteGroup", "Rank": 1, "Command": "Get-PnPSiteGroup", + "CommandName": "Get-PnPSiteGroup", "Id": 688 }, { - "CommandName": "Get-PnPSiteGroup", "Rank": 2, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup", "Id": 689 }, { - "CommandName": "Get-PnPSiteGroup", "Rank": 3, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "CommandName": "Get-PnPSiteGroup", "Id": 690 }, { - "CommandName": "Get-PnPSiteGroup", "Rank": 4, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup", "Id": 691 }, { - "CommandName": "Get-PnPSitePolicy", "Rank": 1, "Command": "Get-PnPSitePolicy", + "CommandName": "Get-PnPSitePolicy", "Id": 692 }, { - "CommandName": "Get-PnPSitePolicy", "Rank": 2, "Command": "Get-PnPSitePolicy -AllAvailable", + "CommandName": "Get-PnPSitePolicy", "Id": 693 }, { - "CommandName": "Get-PnPSitePolicy", "Rank": 3, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Get-PnPSitePolicy", "Id": 694 }, { - "CommandName": "Get-PnPSiteScript", "Rank": 1, "Command": "Get-PnPSiteScript", + "CommandName": "Get-PnPSiteScript", "Id": 695 }, { - "CommandName": "Get-PnPSiteScript", "Rank": 2, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteScript", "Id": 696 }, { - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "CommandName": "Get-PnPSiteScriptFromList", "Id": 697 }, { - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "CommandName": "Get-PnPSiteScriptFromList", "Id": 698 }, { - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "CommandName": "Get-PnPSiteScriptFromList", "Id": 699 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 700 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 701 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 3, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 702 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 703 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 704 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 6, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 705 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1, "Command": "Get-PnPSiteSearchQueryResults", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 706 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 707 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 708 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 709 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 710 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6, "Command": "Get-PnPSiteSearchQueryResults -All", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 711 }, { - "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1, "Command": "Get-PnPSiteSensitivityLabel", + "CommandName": "Get-PnPSiteSensitivityLabel", "Id": 712 }, { - "CommandName": "Get-PnPSiteSetVersionPolicyProgress", "Rank": 1, "Command": "Get-PnPSiteSetVersionPolicyProgress", + "CommandName": "Get-PnPSiteSetVersionPolicyProgress", "Id": 713 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 1, "Command": "Get-PnPSiteTemplate -Out template.pnp", + "CommandName": "Get-PnPSiteTemplate", "Id": 714 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 2, "Command": "Get-PnPSiteTemplate -Out template.xml", + "CommandName": "Get-PnPSiteTemplate", "Id": 715 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 3, "Command": "Get-PnPSiteTemplate -Out template.md", + "CommandName": "Get-PnPSiteTemplate", "Id": 716 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 4, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "CommandName": "Get-PnPSiteTemplate", "Id": 717 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 5, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "CommandName": "Get-PnPSiteTemplate", "Id": 718 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 6, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "CommandName": "Get-PnPSiteTemplate", "Id": 719 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 7, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "CommandName": "Get-PnPSiteTemplate", "Id": 720 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 8, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "CommandName": "Get-PnPSiteTemplate", "Id": 721 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 9, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate", "Id": 722 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 10, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "CommandName": "Get-PnPSiteTemplate", "Id": 723 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 11, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "CommandName": "Get-PnPSiteTemplate", "Id": 724 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 12, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "CommandName": "Get-PnPSiteTemplate", "Id": 725 }, { - "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\"", + "CommandName": "Get-PnPSiteTemplate", "Id": 726 }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 14, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate", "Id": 727 }, { - "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Get-PnPSiteUserInvitations", "Id": 728 }, { - "CommandName": "Get-PnPSiteVersionPolicy", "Rank": 1, "Command": "Get-PnPSiteVersionPolicy", + "CommandName": "Get-PnPSiteVersionPolicy", "Id": 729 }, { - "CommandName": "Get-PnPStorageEntity", "Rank": 1, "Command": "Get-PnPStorageEntity", + "CommandName": "Get-PnPStorageEntity", "Id": 730 }, { - "CommandName": "Get-PnPStorageEntity", "Rank": 2, "Command": "Get-PnPStorageEntity -Key MyKey", + "CommandName": "Get-PnPStorageEntity", "Id": 731 }, { - "CommandName": "Get-PnPStorageEntity", "Rank": 3, "Command": "Get-PnPStorageEntity -Scope Site", + "CommandName": "Get-PnPStorageEntity", "Id": 732 }, { - "CommandName": "Get-PnPStorageEntity", "Rank": 4, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Get-PnPStorageEntity", "Id": 733 }, { - "CommandName": "Get-PnPStoredCredential", "Rank": 1, "Command": "Get-PnPStoredCredential -Name O365", + "CommandName": "Get-PnPStoredCredential", "Id": 734 }, { - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Id": 735 }, { - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Id": 736 }, { - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Id": 737 }, { - "CommandName": "Get-PnPSubWeb", "Rank": 1, "Command": "Get-PnPSubWeb", + "CommandName": "Get-PnPSubWeb", "Id": 738 }, { - "CommandName": "Get-PnPSubWeb", "Rank": 2, "Command": "Get-PnPSubWeb -Recurse", + "CommandName": "Get-PnPSubWeb", "Id": 739 }, { - "CommandName": "Get-PnPSubWeb", "Rank": 3, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "CommandName": "Get-PnPSubWeb", "Id": 740 }, { - "CommandName": "Get-PnPSubWeb", "Rank": 4, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "CommandName": "Get-PnPSubWeb", "Id": 741 }, { - "CommandName": "Get-PnPSubWeb", "Rank": 5, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "CommandName": "Get-PnPSubWeb", "Id": 742 }, { - "CommandName": "Get-PnPSyntexModel", "Rank": 1, "Command": "Get-PnPSyntexModel", + "CommandName": "Get-PnPSyntexModel", "Id": 743 }, { - "CommandName": "Get-PnPSyntexModel", "Rank": 2, "Command": "Get-PnPSyntexModel -Identity 1", + "CommandName": "Get-PnPSyntexModel", "Id": 744 }, { - "CommandName": "Get-PnPSyntexModel", "Rank": 3, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModel", "Id": 745 }, { - "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModelPublication", "Id": 746 }, { - "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "CommandName": "Get-PnPTaxonomyItem", "Id": 747 }, { - "CommandName": "Get-PnPTeamsApp", "Rank": 1, "Command": "Get-PnPTeamsApp", + "CommandName": "Get-PnPTeamsApp", "Id": 748 }, { - "CommandName": "Get-PnPTeamsApp", "Rank": 2, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "CommandName": "Get-PnPTeamsApp", "Id": 749 }, { - "CommandName": "Get-PnPTeamsApp", "Rank": 3, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "CommandName": "Get-PnPTeamsApp", "Id": 750 }, { - "CommandName": "Get-PnPTeamsChannel", "Rank": 1, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "CommandName": "Get-PnPTeamsChannel", "Id": 751 }, { - "CommandName": "Get-PnPTeamsChannel", "Rank": 2, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannel", "Id": 752 }, { - "CommandName": "Get-PnPTeamsChannel", "Rank": 3, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPTeamsChannel", "Id": 753 }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 754 }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 755 }, { - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelMessage", "Id": 756 }, { - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "CommandName": "Get-PnPTeamsChannelMessage", "Id": 757 }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 758 }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 759 }, { - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelUser", "Id": 760 }, { - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "CommandName": "Get-PnPTeamsChannelUser", "Id": 761 }, { - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "CommandName": "Get-PnPTeamsChannelUser", "Id": 762 }, { - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPTeamsChannelUser", "Id": 763 }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 764 }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 765 }, { - "CommandName": "Get-PnPTeamsTab", "Rank": 1, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "CommandName": "Get-PnPTeamsTab", "Id": 766 }, { - "CommandName": "Get-PnPTeamsTab", "Rank": 2, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsTab", "Id": 767 }, { - "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", + "CommandName": "Get-PnPTeamsTab", "Id": 768 }, { - "CommandName": "Get-PnPTeamsTab", "Rank": 4, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsTab", "Id": 769 }, { - "CommandName": "Get-PnPTeamsTab", "Rank": 5, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsTab", "Id": 770 }, { - "CommandName": "Get-PnPTeamsTag", "Rank": 1, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Get-PnPTeamsTag", "Id": 771 }, { - "CommandName": "Get-PnPTeamsTag", "Rank": 2, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Get-PnPTeamsTag", "Id": 772 }, { - "CommandName": "Get-PnPTeamsTeam", "Rank": 1, "Command": "Get-PnPTeamsTeam", + "CommandName": "Get-PnPTeamsTeam", "Id": 773 }, { - "CommandName": "Get-PnPTeamsTeam", "Rank": 2, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "CommandName": "Get-PnPTeamsTeam", "Id": 774 }, { - "CommandName": "Get-PnPTeamsTeam", "Rank": 3, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "CommandName": "Get-PnPTeamsTeam", "Id": 775 }, { - "CommandName": "Get-PnPTeamsTeam", "Rank": 4, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam", "Id": 776 }, { - "CommandName": "Get-PnPTeamsTeam", "Rank": 5, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam", "Id": 777 }, { - "CommandName": "Get-PnPTeamsUser", "Rank": 1, "Command": "Get-PnPTeamsUser -Team MyTeam", + "CommandName": "Get-PnPTeamsUser", "Id": 778 }, { - "CommandName": "Get-PnPTeamsUser", "Rank": 2, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "CommandName": "Get-PnPTeamsUser", "Id": 779 }, { - "CommandName": "Get-PnPTeamsUser", "Rank": 3, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "CommandName": "Get-PnPTeamsUser", "Id": 780 }, { - "CommandName": "Get-PnPTeamsUser", "Rank": 4, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "CommandName": "Get-PnPTeamsUser", "Id": 781 }, { - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, "Command": "Get-PnPTemporarilyDisableAppBar", + "CommandName": "Get-PnPTemporarilyDisableAppBar", "Id": 782 }, { - "CommandName": "Get-PnPTenant", "Rank": 1, "Command": "Get-PnPTenant", + "CommandName": "Get-PnPTenant", "Id": 783 }, { - "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, "Command": "Get-PnPTenantAppCatalogUrl", + "CommandName": "Get-PnPTenantAppCatalogUrl", "Id": 784 }, { - "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "CommandName": "Get-PnPTenantCdnEnabled", "Id": 785 }, { - "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "CommandName": "Get-PnPTenantCdnOrigin", "Id": 786 }, { - "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "CommandName": "Get-PnPTenantCdnPolicies", "Id": 787 }, { - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, "Command": "Get-PnPTenantDeletedSite", + "CommandName": "Get-PnPTenantDeletedSite", "Id": 788 }, { - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, "Command": "Get-PnPTenantDeletedSite -Detailed", + "CommandName": "Get-PnPTenantDeletedSite", "Id": 789 }, { - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Get-PnPTenantDeletedSite", "Id": 790 }, { - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "CommandName": "Get-PnPTenantDeletedSite", "Id": 791 }, { - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 5, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "CommandName": "Get-PnPTenantDeletedSite", "Id": 792 }, { - "CommandName": "Get-PnPTenantId", "Rank": 1, "Command": "Get-PnPTenantId", + "CommandName": "Get-PnPTenantId", "Id": 793 }, { - "CommandName": "Get-PnPTenantId", "Rank": 2, "Command": "Get-PnPTenantId contoso", + "CommandName": "Get-PnPTenantId", "Id": 794 }, { - "CommandName": "Get-PnPTenantId", "Rank": 3, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "CommandName": "Get-PnPTenantId", "Id": 795 }, { - "CommandName": "Get-PnPTenantId", "Rank": 4, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "CommandName": "Get-PnPTenantId", "Id": 796 }, { - "CommandName": "Get-PnPTenantInfo", "Rank": 1, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "CommandName": "Get-PnPTenantInfo", "Id": 797 }, { - "CommandName": "Get-PnPTenantInfo", "Rank": 2, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "CommandName": "Get-PnPTenantInfo", "Id": 798 }, { - "CommandName": "Get-PnPTenantInfo", "Rank": 3, "Command": "Get-PnPTenantInfo", + "CommandName": "Get-PnPTenantInfo", "Id": 799 }, { - "CommandName": "Get-PnPTenantInfo", "Rank": 4, "Command": "Get-PnPTenantInfo -CurrentTenant", + "CommandName": "Get-PnPTenantInfo", "Id": 800 }, { - "CommandName": "Get-PnPTenantInstance", "Rank": 1, "Command": "Get-PnPTenantInstance", + "CommandName": "Get-PnPTenantInstance", "Id": 801 }, { - "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, "Command": "Get-PnPTenantRecycleBinItem", + "CommandName": "Get-PnPTenantRecycleBinItem", "Id": 802 }, { - "CommandName": "Get-PnPTenantSequence", "Rank": 1, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "CommandName": "Get-PnPTenantSequence", "Id": 803 }, { - "CommandName": "Get-PnPTenantSequence", "Rank": 2, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "CommandName": "Get-PnPTenantSequence", "Id": 804 }, { - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "CommandName": "Get-PnPTenantSequenceSite", "Id": 805 }, { - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "CommandName": "Get-PnPTenantSequenceSite", "Id": 806 }, { - "CommandName": "Get-PnPTenantSite", "Rank": 1, "Command": "Get-PnPTenantSite", + "CommandName": "Get-PnPTenantSite", "Id": 807 }, { - "CommandName": "Get-PnPTenantSite", "Rank": 2, "Command": "Get-PnPTenantSite -Detailed", + "CommandName": "Get-PnPTenantSite", "Id": 808 }, { - "CommandName": "Get-PnPTenantSite", "Rank": 3, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "CommandName": "Get-PnPTenantSite", "Id": 809 }, { - "CommandName": "Get-PnPTenantSite", "Rank": 4, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "CommandName": "Get-PnPTenantSite", "Id": 810 }, { - "CommandName": "Get-PnPTenantSite", "Rank": 5, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "CommandName": "Get-PnPTenantSite", "Id": 811 }, { - "CommandName": "Get-PnPTenantSite", "Rank": 6, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "CommandName": "Get-PnPTenantSite", "Id": 812 }, { - "CommandName": "Get-PnPTenantSite", "Rank": 7, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "CommandName": "Get-PnPTenantSite", "Id": 813 }, { - "CommandName": "Get-PnPTenantSite", "Rank": 8, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "CommandName": "Get-PnPTenantSite", "Id": 814 }, { - "CommandName": "Get-PnPTenantSite", "Rank": 9, "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "CommandName": "Get-PnPTenantSite", "Id": 815 }, { - "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1, "Command": "Get-PnPTenantSyncClientRestriction", + "CommandName": "Get-PnPTenantSyncClientRestriction", "Id": 816 }, { - "CommandName": "Get-PnPTenantTemplate", "Rank": 1, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "CommandName": "Get-PnPTenantTemplate", "Id": 817 }, { - "CommandName": "Get-PnPTenantTemplate", "Rank": 2, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "CommandName": "Get-PnPTenantTemplate", "Id": 818 }, { - "CommandName": "Get-PnPTenantTemplate", "Rank": 3, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "CommandName": "Get-PnPTenantTemplate", "Id": 819 }, { - "CommandName": "Get-PnPTenantTheme", "Rank": 1, "Command": "Get-PnPTenantTheme", + "CommandName": "Get-PnPTenantTheme", "Id": 820 }, { - "CommandName": "Get-PnPTenantTheme", "Rank": 2, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Get-PnPTenantTheme", "Id": 821 }, { - "CommandName": "Get-PnPTenantTheme", "Rank": 3, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "CommandName": "Get-PnPTenantTheme", "Id": 822 }, { - "CommandName": "Get-PnPTerm", "Rank": 1, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", "Id": 823 }, { - "CommandName": "Get-PnPTerm", "Rank": 2, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", "Id": 824 }, { - "CommandName": "Get-PnPTerm", "Rank": 3, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", "Id": 825 }, { - "CommandName": "Get-PnPTerm", "Rank": 4, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "CommandName": "Get-PnPTerm", "Id": 826 }, { - "CommandName": "Get-PnPTerm", "Rank": 5, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "CommandName": "Get-PnPTerm", "Id": 827 }, { - "CommandName": "Get-PnPTermGroup", "Rank": 1, "Command": "Get-PnPTermGroup", + "CommandName": "Get-PnPTermGroup", "Id": 828 }, { - "CommandName": "Get-PnPTermGroup", "Rank": 2, "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "CommandName": "Get-PnPTermGroup", "Id": 829 }, { - "CommandName": "Get-PnPTermGroup", "Rank": 3, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "CommandName": "Get-PnPTermGroup", "Id": 830 }, { - "CommandName": "Get-PnPTermLabel", "Rank": 1, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "CommandName": "Get-PnPTermLabel", "Id": 831 }, { - "CommandName": "Get-PnPTermLabel", "Rank": 2, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "CommandName": "Get-PnPTermLabel", "Id": 832 }, { - "CommandName": "Get-PnPTermLabel", "Rank": 3, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermLabel", "Id": 833 }, { - "CommandName": "Get-PnPTermSet", "Rank": 1, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet", "Id": 834 }, { - "CommandName": "Get-PnPTermSet", "Rank": 2, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet", "Id": 835 }, { - "CommandName": "Get-PnPTermSet", "Rank": 3, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "CommandName": "Get-PnPTermSet", "Id": 836 }, { - "CommandName": "Get-PnPTheme", "Rank": 1, "Command": "Get-PnPTheme", + "CommandName": "Get-PnPTheme", "Id": 837 }, { - "CommandName": "Get-PnPTheme", "Rank": 2, "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "CommandName": "Get-PnPTheme", "Id": 838 }, { - "CommandName": "Get-PnPTimeZoneId", "Rank": 1, "Command": "Get-PnPTimeZoneId", + "CommandName": "Get-PnPTimeZoneId", "Id": 839 }, { - "CommandName": "Get-PnPTimeZoneId", "Rank": 2, "Command": "Get-PnPTimeZoneId -Match Stockholm", + "CommandName": "Get-PnPTimeZoneId", "Id": 840 }, { - "CommandName": "Get-PnPUnfurlLink", "Rank": 1, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "CommandName": "Get-PnPUnfurlLink", "Id": 841 }, { - "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "CommandName": "Get-PnPUnifiedAuditLog", "Id": 842 }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1, "Command": "Get-PnPUPABulkImportStatus", + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 843 }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 844 }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3, "Command": "Get-PnPUPABulkImportStatus -JobId <guid>", + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 845 }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4, "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 846 }, { - "CommandName": "Get-PnPUser", "Rank": 1, "Command": "Get-PnPUser", + "CommandName": "Get-PnPUser", "Id": 847 }, { - "CommandName": "Get-PnPUser", "Rank": 2, "Command": "Get-PnPUser -Identity 23", + "CommandName": "Get-PnPUser", "Id": 848 }, { - "CommandName": "Get-PnPUser", "Rank": 3, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser", "Id": 849 }, { - "CommandName": "Get-PnPUser", "Rank": 4, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser", "Id": 850 }, { - "CommandName": "Get-PnPUser", "Rank": 5, "Command": "Get-PnPUser -WithRightsAssigned", + "CommandName": "Get-PnPUser", "Id": 851 }, { - "CommandName": "Get-PnPUser", "Rank": 6, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "CommandName": "Get-PnPUser", "Id": 852 }, { - "CommandName": "Get-PnPUser", "Rank": 7, "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "CommandName": "Get-PnPUser", "Id": 853 }, { - "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "CommandName": "Get-PnPUserOneDriveQuota", "Id": 854 }, { - "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "CommandName": "Get-PnPUserProfileProperty", "Id": 855 }, { - "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "CommandName": "Get-PnPUserProfileProperty", "Id": 856 }, { - "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "CommandName": "Get-PnPUserProfileProperty", "Id": 857 }, { - "CommandName": "Get-PnPView", "Rank": 1, "Command": "Get-PnPView -List \"Demo List\"", + "CommandName": "Get-PnPView", "Id": 858 }, { - "CommandName": "Get-PnPView", "Rank": 2, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "CommandName": "Get-PnPView", "Id": 859 }, { - "CommandName": "Get-PnPView", "Rank": 3, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "CommandName": "Get-PnPView", "Id": 860 }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, "Command": "Get-PnPVivaConnectionsDashboardACE", + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 861 }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 862 }, { - "CommandName": "Get-PnPWeb", "Rank": 1, "Command": "Get-PnPWeb", + "CommandName": "Get-PnPWeb", "Id": 863 }, { - "CommandName": "Get-PnPWebHeader", "Rank": 1, "Command": "Get-PnPWebHeader", + "CommandName": "Get-PnPWebHeader", "Id": 864 }, { - "CommandName": "Get-PnPWebhookSubscription", "Rank": 1, "Command": "Get-PnPWebhookSubscription -List MyList", + "CommandName": "Get-PnPWebhookSubscription", "Id": 865 }, { - "CommandName": "Get-PnPWebPart", "Rank": 1, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "CommandName": "Get-PnPWebPart", "Id": 866 }, { - "CommandName": "Get-PnPWebPart", "Rank": 2, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPWebPart", "Id": 867 }, { - "CommandName": "Get-PnPWebPartProperty", "Rank": 1, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "CommandName": "Get-PnPWebPartProperty", "Id": 868 }, { - "CommandName": "Get-PnPWebPartProperty", "Rank": 2, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "CommandName": "Get-PnPWebPartProperty", "Id": 869 }, { - "CommandName": "Get-PnPWebPartXml", "Rank": 1, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPWebPartXml", "Id": 870 }, { - "CommandName": "Get-PnPWebTemplates", "Rank": 1, "Command": "Get-PnPWebTemplates", + "CommandName": "Get-PnPWebTemplates", "Id": 871 }, { - "CommandName": "Get-PnPWebTemplates", "Rank": 2, "Command": "Get-PnPWebTemplates -LCID 1033", + "CommandName": "Get-PnPWebTemplates", "Id": 872 }, { - "CommandName": "Get-PnPWebTemplates", "Rank": 3, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "CommandName": "Get-PnPWebTemplates", "Id": 873 }, { - "CommandName": "Get-PnPWikiPageContent", "Rank": 1, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "CommandName": "Get-PnPWikiPageContent", "Id": 874 }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 875 }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 876 }, { - "CommandName": "Grant-PnPHubSiteRights", "Rank": 1, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Grant-PnPHubSiteRights", "Id": 877 }, { - "CommandName": "Grant-PnPSiteDesignRights", "Rank": 1, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Grant-PnPSiteDesignRights", "Id": 878 }, { - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Id": 879 }, { - "CommandName": "Import-PnPTaxonomy", "Rank": 1, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "CommandName": "Import-PnPTaxonomy", "Id": 880 }, { - "CommandName": "Import-PnPTaxonomy", "Rank": 2, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "CommandName": "Import-PnPTaxonomy", "Id": 881 }, { - "CommandName": "Import-PnPTaxonomy", "Rank": 3, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "CommandName": "Import-PnPTaxonomy", "Id": 882 }, { - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1, "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "CommandName": "Import-PnPTermGroupFromXml", "Id": 883 }, { - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2, "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "CommandName": "Import-PnPTermGroupFromXml", "Id": 884 }, { - "CommandName": "Import-PnPTermSet", "Rank": 1, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "CommandName": "Import-PnPTermSet", "Id": 885 }, { - "CommandName": "Import-PnPTermSet", "Rank": 2, "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", + "CommandName": "Import-PnPTermSet", "Id": 886 }, { - "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'", + "CommandName": "Import-PnPTermSet", "Id": 887 }, { - "CommandName": "Install-PnPApp", "Rank": 1, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Install-PnPApp", "Id": 888 }, { - "CommandName": "Install-PnPApp", "Rank": 2, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Install-PnPApp", "Id": 889 }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 1, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "CommandName": "Invoke-PnPGraphMethod", "Id": 890 }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 2, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "CommandName": "Invoke-PnPGraphMethod", "Id": 891 }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 3, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "CommandName": "Invoke-PnPGraphMethod", "Id": 892 }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 4, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "CommandName": "Invoke-PnPGraphMethod", "Id": 893 }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 5, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "CommandName": "Invoke-PnPGraphMethod", "Id": 894 }, { - "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", + "CommandName": "Invoke-PnPGraphMethod", "Id": 895 }, { - "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\"", + "CommandName": "Invoke-PnPGraphMethod", "Id": 896 }, { - "CommandName": "Invoke-PnPListDesign", "Rank": 1, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPListDesign", "Id": 897 }, { - "CommandName": "Invoke-PnPListDesign", "Rank": 2, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPListDesign", "Id": 898 }, { - "CommandName": "Invoke-PnPQuery", "Rank": 1, "Command": "Invoke-PnPQuery -RetryCount 5", + "CommandName": "Invoke-PnPQuery", "Id": 899 }, { - "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPSiteDesign", "Id": 900 }, { - "CommandName": "Invoke-PnPSiteDesign", "Rank": 2, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPSiteDesign", "Id": 901 }, { - "CommandName": "Invoke-PnPSiteScript", "Rank": 1, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "CommandName": "Invoke-PnPSiteScript", "Id": 902 }, { - "CommandName": "Invoke-PnPSiteSwap", "Rank": 1, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "CommandName": "Invoke-PnPSiteSwap", "Id": 903 }, { - "CommandName": "Invoke-PnPSiteSwap", "Rank": 2, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "CommandName": "Invoke-PnPSiteSwap", "Id": 904 }, { - "CommandName": "Invoke-PnPSiteSwap", "Rank": 3, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", + "CommandName": "Invoke-PnPSiteSwap", "Id": 905 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1, "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 906 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 907 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 908 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 909 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 910 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 911 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 912 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 913 }, { - "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "CommandName": "Invoke-PnPSPRestMethod", "Id": 914 }, { - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "CommandName": "Invoke-PnPTenantTemplate", "Id": 915 }, { - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "CommandName": "Invoke-PnPTenantTemplate", "Id": 916 }, { - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPTenantTemplate", "Id": 917 }, { - "CommandName": "Invoke-PnPWebAction", "Rank": 1, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction", "Id": 918 }, { - "CommandName": "Invoke-PnPWebAction", "Rank": 2, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction", "Id": 919 }, { - "CommandName": "Measure-PnPList", "Rank": 1, "Command": "Measure-PnPList \"Documents\"", + "CommandName": "Measure-PnPList", "Id": 920 }, { - "CommandName": "Measure-PnPList", "Rank": 2, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "CommandName": "Measure-PnPList", "Id": 921 }, { - "CommandName": "Measure-PnPWeb", "Rank": 1, "Command": "Measure-PnPWeb", + "CommandName": "Measure-PnPWeb", "Id": 922 }, { - "CommandName": "Measure-PnPWeb", "Rank": 2, "Command": "Measure-PnPWeb $web -Recursive", + "CommandName": "Measure-PnPWeb", "Id": 923 }, { - "CommandName": "Merge-PnPTerm", "Rank": 1, "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", + "CommandName": "Merge-PnPTerm", "Id": 924 }, { - "CommandName": "Move-PnPFile", "Rank": 1, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "CommandName": "Move-PnPFile", "Id": 925 }, { - "CommandName": "Move-PnPFile", "Rank": 2, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "CommandName": "Move-PnPFile", "Id": 926 }, { - "CommandName": "Move-PnPFile", "Rank": 3, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Move-PnPFile", "Id": 927 }, { - "CommandName": "Move-PnPFile", "Rank": 4, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Move-PnPFile", "Id": 928 }, { - "CommandName": "Move-PnPFolder", "Rank": 1, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "CommandName": "Move-PnPFolder", "Id": 929 }, { - "CommandName": "Move-PnPFolder", "Rank": 2, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "CommandName": "Move-PnPFolder", "Id": 930 }, { - "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Move-PnPListItemToRecycleBin", "Id": 931 }, { - "CommandName": "Move-PnPPageComponent", "Rank": 1, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "CommandName": "Move-PnPPageComponent", "Id": 932 }, { - "CommandName": "Move-PnPPageComponent", "Rank": 2, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "CommandName": "Move-PnPPageComponent", "Id": 933 }, { - "CommandName": "Move-PnPPageComponent", "Rank": 3, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "CommandName": "Move-PnPPageComponent", "Id": 934 }, { - "CommandName": "Move-PnPPageComponent", "Rank": 4, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "CommandName": "Move-PnPPageComponent", "Id": 935 }, { - "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, "Command": "Move-PnPRecycleBinItem", + "CommandName": "Move-PnpRecycleBinItem", "Id": 936 }, { - "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "CommandName": "Move-PnpRecycleBinItem", "Id": 937 }, { - "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, "Command": "Move-PnPRecycleBinItem -Force", + "CommandName": "Move-PnpRecycleBinItem", "Id": 938 }, { - "CommandName": "Move-PnPTerm", "Rank": 1, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", + "CommandName": "Move-PnPTerm", "Id": 939 }, { - "CommandName": "Move-PnPTerm", "Rank": 2, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "CommandName": "Move-PnPTerm", "Id": 940 }, { - "CommandName": "Move-PnPTerm", "Rank": 3, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "CommandName": "Move-PnPTerm", "Id": 941 }, { - "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", + "CommandName": "Move-PnPTermSet", "Id": 942 }, { - "CommandName": "Move-PnPTermSet", "Rank": 2, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "CommandName": "Move-PnPTermSet", "Id": 943 }, { - "CommandName": "New-PnPAzureADGroup", "Rank": 1, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPAzureADGroup", "Id": 944 }, { - "CommandName": "New-PnPAzureADGroup", "Rank": 2, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "CommandName": "New-PnPAzureADGroup", "Id": 945 }, { - "CommandName": "New-PnPAzureADGroup", "Rank": 3, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "CommandName": "New-PnPAzureADGroup", "Id": 946 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 947 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 948 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 949 }, { - "CommandName": "New-PnPAzureCertificate", "Rank": 1, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "CommandName": "New-PnPAzureCertificate", "Id": 950 }, { - "CommandName": "New-PnPAzureCertificate", "Rank": 2, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "CommandName": "New-PnPAzureCertificate", "Id": 951 }, { - "CommandName": "New-PnPAzureCertificate", "Rank": 3, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "CommandName": "New-PnPAzureCertificate", "Id": 952 }, { - "CommandName": "New-PnPAzureCertificate", "Rank": 4, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", + "CommandName": "New-PnPAzureCertificate", "Id": 953 }, { - "CommandName": "New-PnPContainerType", "Rank": 1, "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"", + "CommandName": "New-PnPContainerType", "Id": 954 }, { - "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()", + "CommandName": "New-PnPGraphSubscription", "Id": 955 }, { - "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()", + "CommandName": "New-PnPGraphSubscription", "Id": 956 }, { - "CommandName": "New-PnPGroup", "Rank": 1, "Command": "New-PnPGroup -Title \"My Site Users\"", + "CommandName": "New-PnPGroup", "Id": 957 }, { - "CommandName": "New-PnPList", "Rank": 1, "Command": "New-PnPList -Title Announcements -Template Announcements", + "CommandName": "New-PnPList", "Id": 958 }, { - "CommandName": "New-PnPList", "Rank": 2, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "CommandName": "New-PnPList", "Id": 959 }, { - "CommandName": "New-PnPList", "Rank": 3, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "CommandName": "New-PnPList", "Id": 960 }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPMicrosoft365Group", "Id": 961 }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 2, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "CommandName": "New-PnPMicrosoft365Group", "Id": 962 }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 3, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group", "Id": 963 }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 4, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group", "Id": 964 }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 5, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPMicrosoft365Group", "Id": 965 }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 6, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "New-PnPMicrosoft365Group", "Id": 966 }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 7, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "CommandName": "New-PnPMicrosoft365Group", "Id": 967 }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 1, "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", + "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 968 }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 2, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 969 }, { - "CommandName": "New-PnPPersonalSite", "Rank": 1, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "CommandName": "New-PnPPersonalSite", "Id": 970 }, { - "CommandName": "New-PnPPlannerPlan", "Rank": 1, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "CommandName": "New-PnPPlannerPlan", "Id": 971 }, { - "CommandName": "New-PnPSdnProvider", "Rank": 1, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "CommandName": "New-PnPSdnProvider", "Id": 972 }, { - "CommandName": "New-PnPSite", "Rank": 1, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "CommandName": "New-PnPSite", "Id": 973 }, { - "CommandName": "New-PnPSite", "Rank": 2, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "CommandName": "New-PnPSite", "Id": 974 }, { - "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", + "CommandName": "New-PnPSite", "Id": 975 }, { - "CommandName": "New-PnPSite", "Rank": 4, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "CommandName": "New-PnPSite", "Id": 976 }, { - "CommandName": "New-PnPSite", "Rank": 5, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "CommandName": "New-PnPSite", "Id": 977 }, { - "CommandName": "New-PnPSite", "Rank": 6, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite", "Id": 978 }, { - "CommandName": "New-PnPSite", "Rank": 7, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "CommandName": "New-PnPSite", "Id": 979 }, { - "CommandName": "New-PnPSite", "Rank": 8, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "CommandName": "New-PnPSite", "Id": 980 }, { - "CommandName": "New-PnPSite", "Rank": 9, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "CommandName": "New-PnPSite", "Id": 981 }, { - "CommandName": "New-PnPSite", "Rank": 10, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "CommandName": "New-PnPSite", "Id": 982 }, { - "CommandName": "New-PnPSite", "Rank": 11, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "CommandName": "New-PnPSite", "Id": 983 }, { - "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", + "CommandName": "New-PnPSite", "Id": 984 }, { - "CommandName": "New-PnPSite", "Rank": 13, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "CommandName": "New-PnPSite", "Id": 985 }, { - "CommandName": "New-PnPSite", "Rank": 14, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "CommandName": "New-PnPSite", "Id": 986 }, { - "CommandName": "New-PnPSite", "Rank": 15, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite", "Id": 987 }, { - "CommandName": "New-PnPSite", "Rank": 16, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "CommandName": "New-PnPSite", "Id": 988 }, { - "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1, "Command": "New-PnPSiteCollectionTermStore", + "CommandName": "New-PnPSiteCollectionTermStore", "Id": 989 }, { - "CommandName": "New-PnPSiteGroup", "Rank": 1, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "CommandName": "New-PnPSiteGroup", "Id": 990 }, { - "CommandName": "New-PnPSiteGroup", "Rank": 2, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "CommandName": "New-PnPSiteGroup", "Id": 991 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 992 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 993 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 994 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 995 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 5, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 996 }, { - "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\"}", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 997 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 998 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 999 }, { - "CommandName": "New-PnPTeamsApp", "Rank": 1, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "CommandName": "New-PnPTeamsApp", "Id": 1000 }, { - "CommandName": "New-PnPTeamsTeam", "Rank": 1, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "CommandName": "New-PnPTeamsTeam", "Id": 1001 }, { - "CommandName": "New-PnPTeamsTeam", "Rank": 2, "Command": "New-PnPTeamsTeam -GroupId $groupId", + "CommandName": "New-PnPTeamsTeam", "Id": 1002 }, { - "CommandName": "New-PnPTeamsTeam", "Rank": 3, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "CommandName": "New-PnPTeamsTeam", "Id": 1003 }, { - "CommandName": "New-PnPTeamsTeam", "Rank": 4, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPTeamsTeam", "Id": 1004 }, { - "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\"", + "CommandName": "New-PnPTeamsTeam", "Id": 1005 }, { - "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\"", + "CommandName": "New-PnPTeamsTeam", "Id": 1006 }, { - "CommandName": "New-PnPTenantSite", "Rank": 1, "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", + "CommandName": "New-PnPTenantSite", "Id": 1007 }, { - "CommandName": "New-PnPTenantSite", "Rank": 2, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "CommandName": "New-PnPTenantSite", "Id": 1008 }, { - "CommandName": "New-PnPTerm", "Rank": 1, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "CommandName": "New-PnPTerm", "Id": 1009 }, { - "CommandName": "New-PnPTerm", "Rank": 2, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "New-PnPTerm", "Id": 1010 }, { - "CommandName": "New-PnPTermGroup", "Rank": 1, "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "CommandName": "New-PnPTermGroup", "Id": 1011 }, { - "CommandName": "New-PnPTermLabel", "Rank": 1, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "CommandName": "New-PnPTermLabel", "Id": 1012 }, { - "CommandName": "New-PnPTermSet", "Rank": 1, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "CommandName": "New-PnPTermSet", "Id": 1013 }, { - "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "CommandName": "New-PnPUPABulkImportJob", "Id": 1014 }, { - "CommandName": "New-PnPUPABulkImportJob", "Rank": 2, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", + "CommandName": "New-PnPUPABulkImportJob", "Id": 1015 }, { - "CommandName": "New-PnPUser", "Rank": 1, "Command": "New-PnPUser -LoginName user@company.com", + "CommandName": "New-PnPUser", "Id": 1016 }, { - "CommandName": "New-PnPWeb", "Rank": 1, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "CommandName": "New-PnPWeb", "Id": 1017 }, { - "CommandName": "Publish-PnPApp", "Rank": 1, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Publish-PnPApp", "Id": 1018 }, { - "CommandName": "Publish-PnPApp", "Rank": 2, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "CommandName": "Publish-PnPApp", "Id": 1019 }, { - "CommandName": "Publish-PnPCompanyApp", "Rank": 1, "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", + "CommandName": "Publish-PnPCompanyApp", "Id": 1020 }, { - "CommandName": "Publish-PnPContentType", "Rank": 1, "Command": "Publish-PnPContentType -ContentType 0x0101", + "CommandName": "Publish-PnPContentType", "Id": 1021 }, { - "CommandName": "Publish-PnPSyntexModel", "Rank": 1, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "CommandName": "Publish-PnPSyntexModel", "Id": 1022 }, { - "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", + "CommandName": "Publish-PnPSyntexModel", "Id": 1023 }, { - "CommandName": "Read-PnPSiteTemplate", "Rank": 1, "Command": "Read-PnPSiteTemplate -Path template.pnp", + "CommandName": "Read-PnPSiteTemplate", "Id": 1024 }, { - "CommandName": "Read-PnPSiteTemplate", "Rank": 2, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "CommandName": "Read-PnPSiteTemplate", "Id": 1025 }, { - "CommandName": "Read-PnPSiteTemplate", "Rank": 3, "Command": "Read-PnPSiteTemplate -Xml $xml", + "CommandName": "Read-PnPSiteTemplate", "Id": 1026 }, { - "CommandName": "Read-PnPTenantTemplate", "Rank": 1, "Command": "Read-PnPTenantTemplate -Path template.pnp", + "CommandName": "Read-PnPTenantTemplate", "Id": 1027 }, { - "CommandName": "Register-PnPAppCatalogSite", "Rank": 1, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "CommandName": "Register-PnPAppCatalogSite", "Id": 1028 }, { - "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\")", + "CommandName": "Register-PnPAzureADApp", "Id": 1029 }, { - "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\")", + "CommandName": "Register-PnPAzureADApp", "Id": 1030 }, { - "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\")", + "CommandName": "Register-PnPAzureADApp", "Id": 1031 }, { - "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\")", + "CommandName": "Register-PnPAzureADApp", "Id": 1032 }, { - "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)", + "CommandName": "Register-PnPAzureADApp", "Id": 1033 }, { - "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)", + "CommandName": "Register-PnPAzureADApp", "Id": 1034 }, { - "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", + "CommandName": "Register-PnPAzureADApp", "Id": 1035 }, { - "CommandName": "Register-PnPHubSite", "Rank": 1, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Register-PnPHubSite", "Id": 1036 }, { - "CommandName": "Register-PnPHubSite", "Rank": 2, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "CommandName": "Register-PnPHubSite", "Id": 1037 }, { - "CommandName": "Register-PnPManagementShellAccess", "Rank": 1, "Command": "Register-PnPManagementShellAccess", + "CommandName": "Register-PnPManagementShellAccess", "Id": 1038 }, { - "CommandName": "Register-PnPManagementShellAccess", "Rank": 2, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "CommandName": "Register-PnPManagementShellAccess", "Id": 1039 }, { - "CommandName": "Register-PnPManagementShellAccess", "Rank": 3, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "CommandName": "Register-PnPManagementShellAccess", "Id": 1040 }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1041 }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1042 }, { - "CommandName": "Remove-PnPAlert", "Rank": 1, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "CommandName": "Remove-PnPAlert", "Id": 1043 }, { - "CommandName": "Remove-PnPAlert", "Rank": 2, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAlert", "Id": 1044 }, { - "CommandName": "Remove-PnPApp", "Rank": 1, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Remove-PnPApp", "Id": 1045 }, { - "CommandName": "Remove-PnPApp", "Rank": 2, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Remove-PnPApp", "Id": 1046 }, { - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1047 }, { - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1048 }, { - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1049 }, { - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1050 }, { - "CommandName": "Remove-PnPAzureADApp", "Rank": 1, "Command": "Remove-PnPAzureADApp -Identity MyApp", + "CommandName": "Remove-PnPAzureADApp", "Id": 1051 }, { - "CommandName": "Remove-PnPAzureADApp", "Rank": 2, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Remove-PnPAzureADApp", "Id": 1052 }, { - "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "CommandName": "Remove-PnPAzureADGroup", "Id": 1053 }, { - "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, "Command": "Remove-PnPAzureADGroup -Identity $group", + "CommandName": "Remove-PnPAzureADGroup", "Id": 1054 }, { - "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAzureADGroupMember", "Id": 1055 }, { - "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAzureADGroupOwner", "Id": 1056 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1057 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1058 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1059 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1060 }, { - "CommandName": "Remove-PnPContainer", "Rank": 1, "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "CommandName": "Remove-PnPContainer", "Id": 1061 }, { - "CommandName": "Remove-PnPContainer", "Rank": 2, "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", + "CommandName": "Remove-PnPContainer", "Id": 1062 }, { - "CommandName": "Remove-PnPContainerType", "Rank": 1, "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6", + "CommandName": "Remove-PnPContainerType", "Id": 1063 }, { - "CommandName": "Remove-PnPContentType", "Rank": 1, "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "CommandName": "Remove-PnPContentType", "Id": 1064 }, { - "CommandName": "Remove-PnPContentType", "Rank": 2, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "CommandName": "Remove-PnPContentType", "Id": 1065 }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1066 }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1067 }, { - "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPContentTypeFromList", "Id": 1068 }, { - "CommandName": "Remove-PnPCustomAction", "Rank": 1, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPCustomAction", "Id": 1069 }, { - "CommandName": "Remove-PnPCustomAction", "Rank": 2, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPCustomAction", "Id": 1070 }, { - "CommandName": "Remove-PnPCustomAction", "Rank": 3, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "CommandName": "Remove-PnPCustomAction", "Id": 1071 }, { - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Id": 1072 }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 1, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver", "Id": 1073 }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 2, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver", "Id": 1074 }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 3, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "CommandName": "Remove-PnPEventReceiver", "Id": 1075 }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 4, "Command": "Remove-PnPEventReceiver -List ProjectList", + "CommandName": "Remove-PnPEventReceiver", "Id": 1076 }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 5, "Command": "Remove-PnPEventReceiver", + "CommandName": "Remove-PnPEventReceiver", "Id": 1077 }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 6, "Command": "Remove-PnPEventReceiver -Scope Site", + "CommandName": "Remove-PnPEventReceiver", "Id": 1078 }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 7, "Command": "Remove-PnPEventReceiver -Scope Web", + "CommandName": "Remove-PnPEventReceiver", "Id": 1079 }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 8, "Command": "Remove-PnPEventReceiver -Scope All", + "CommandName": "Remove-PnPEventReceiver", "Id": 1080 }, { - "CommandName": "Remove-PnPField", "Rank": 1, "Command": "Remove-PnPField -Identity \"Speakers\"", + "CommandName": "Remove-PnPField", "Id": 1081 }, { - "CommandName": "Remove-PnPField", "Rank": 2, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Remove-PnPField", "Id": 1082 }, { - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPFieldFromContentType", "Id": 1083 }, { - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "CommandName": "Remove-PnPFieldFromContentType", "Id": 1084 }, { - "CommandName": "Remove-PnPFile", "Rank": 1, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile", "Id": 1085 }, { - "CommandName": "Remove-PnPFile", "Rank": 2, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile", "Id": 1086 }, { - "CommandName": "Remove-PnPFile", "Rank": 3, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "CommandName": "Remove-PnPFile", "Id": 1087 }, { - "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "CommandName": "Remove-PnPFileFromSiteTemplate", "Id": 1088 }, { - "CommandName": "Remove-PnPFileSharingLink", "Rank": 1, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Remove-PnPFileSharingLink", "Id": 1089 }, { - "CommandName": "Remove-PnPFileSharingLink", "Rank": 2, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "CommandName": "Remove-PnPFileSharingLink", "Id": 1090 }, { - "CommandName": "Remove-PnPFileVersion", "Rank": 1, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Remove-PnPFileVersion", "Id": 1091 }, { - "CommandName": "Remove-PnPFileVersion", "Rank": 2, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Remove-PnPFileVersion", "Id": 1092 }, { - "CommandName": "Remove-PnPFileVersion", "Rank": 3, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "CommandName": "Remove-PnPFileVersion", "Id": 1093 }, { - "CommandName": "Remove-PnPFlowOwner", "Rank": 1, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPFlowOwner", "Id": 1094 }, { - "CommandName": "Remove-PnPFlowOwner", "Rank": 2, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "CommandName": "Remove-PnPFlowOwner", "Id": 1095 }, { - "CommandName": "Remove-PnPFlowOwner", "Rank": 3, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "CommandName": "Remove-PnPFlowOwner", "Id": 1096 }, { - "CommandName": "Remove-PnPFlowOwner", "Rank": 4, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "CommandName": "Remove-PnPFlowOwner", "Id": 1097 }, { - "CommandName": "Remove-PnPFolder", "Rank": 1, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Remove-PnPFolder", "Id": 1098 }, { - "CommandName": "Remove-PnPFolder", "Rank": 2, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "CommandName": "Remove-PnPFolder", "Id": 1099 }, { - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Remove-PnPFolderSharingLink", "Id": 1100 }, { - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "CommandName": "Remove-PnPFolderSharingLink", "Id": 1101 }, { - "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "CommandName": "Remove-PnPGraphSubscription", "Id": 1102 }, { - "CommandName": "Remove-PnPGroup", "Rank": 1, "Command": "Remove-PnPGroup -Identity \"My Users\"", + "CommandName": "Remove-PnPGroup", "Id": 1103 }, { - "CommandName": "Remove-PnPGroupMember", "Rank": 1, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Remove-PnPGroupMember", "Id": 1104 }, { - "CommandName": "Remove-PnPHomeSite", "Rank": 1, "Command": "Remove-PnPHomeSite", + "CommandName": "Remove-PnPHomeSite", "Id": 1105 }, { - "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPHubSiteAssociation", "Id": 1106 }, { - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1107 }, { - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1108 }, { - "CommandName": "Remove-PnPIndexedProperty", "Rank": 1, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "CommandName": "Remove-PnPIndexedProperty", "Id": 1109 }, { - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1110 }, { - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1111 }, { - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1112 }, { - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 4, "Command": "Remove-PnPJavaScriptLink -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1113 }, { - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1114 }, { - "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1, "Command": "Remove-PnPKnowledgeHubSite", + "CommandName": "Remove-PnPKnowledgeHubSite", "Id": 1115 }, { - "CommandName": "Remove-PnPList", "Rank": 1, "Command": "Remove-PnPList -Identity Announcements", + "CommandName": "Remove-PnPList", "Id": 1116 }, { - "CommandName": "Remove-PnPList", "Rank": 2, "Command": "Remove-PnPList -Identity Announcements -Force", + "CommandName": "Remove-PnPList", "Id": 1117 }, { - "CommandName": "Remove-PnPList", "Rank": 3, "Command": "Remove-PnPList -Identity Announcements -Recycle", + "CommandName": "Remove-PnPList", "Id": 1118 }, { - "CommandName": "Remove-PnPList", "Rank": 4, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "CommandName": "Remove-PnPList", "Id": 1119 }, { - "CommandName": "Remove-PnPListDesign", "Rank": 1, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPListDesign", "Id": 1120 }, { - "CommandName": "Remove-PnPListItem", "Rank": 1, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Remove-PnPListItem", "Id": 1121 }, { - "CommandName": "Remove-PnPListItem", "Rank": 2, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "CommandName": "Remove-PnPListItem", "Id": 1122 }, { - "CommandName": "Remove-PnPListItem", "Rank": 3, "Command": "Remove-PnPListItem -List \"Demo List\"", + "CommandName": "Remove-PnPListItem", "Id": 1123 }, { - "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "CommandName": "Remove-PnPListItemAttachment", "Id": 1124 }, { - "CommandName": "Remove-PnPListItemAttachment", "Rank": 2, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "CommandName": "Remove-PnPListItemAttachment", "Id": 1125 }, { - "CommandName": "Remove-PnPListItemAttachment", "Rank": 3, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment", "Id": 1126 }, { - "CommandName": "Remove-PnPListItemAttachment", "Rank": 4, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment", "Id": 1127 }, { - "CommandName": "Remove-PnPListItemAttachment", "Rank": 5, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "CommandName": "Remove-PnPListItemAttachment", "Id": 1128 }, { - "CommandName": "Remove-PnPListItemVersion", "Rank": 1, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Remove-PnPListItemVersion", "Id": 1129 }, { - "CommandName": "Remove-PnPListItemVersion", "Rank": 2, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Remove-PnPListItemVersion", "Id": 1130 }, { - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1131 }, { - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1132 }, { - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPMicrosoft365GroupMember", "Id": 1133 }, { - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Id": 1134 }, { - "CommandName": "Remove-PnPMicrosoft365GroupPhoto", "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", + "CommandName": "Remove-PnPMicrosoft365GroupPhoto", "Id": 1135 }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1136 }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1137 }, { - "CommandName": "Remove-PnPNavigationNode", "Rank": 1, "Command": "Remove-PnPNavigationNode -Identity 1032", + "CommandName": "Remove-PnPNavigationNode", "Id": 1138 }, { - "CommandName": "Remove-PnPNavigationNode", "Rank": 2, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "CommandName": "Remove-PnPNavigationNode", "Id": 1139 }, { - "CommandName": "Remove-PnPNavigationNode", "Rank": 3, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "CommandName": "Remove-PnPNavigationNode", "Id": 1140 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1141 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1142 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1143 }, { - "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPOrgNewsSite", "Id": 1144 }, { - "CommandName": "Remove-PnPPage", "Rank": 1, "Command": "Remove-PnPPage -Identity \"MyPage\"", + "CommandName": "Remove-PnPPage", "Id": 1145 }, { - "CommandName": "Remove-PnPPage", "Rank": 2, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "CommandName": "Remove-PnPPage", "Id": 1146 }, { - "CommandName": "Remove-PnPPage", "Rank": 3, "Command": "Remove-PnPPage $page", + "CommandName": "Remove-PnPPage", "Id": 1147 }, { - "CommandName": "Remove-PnPPage", "Rank": 4, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "CommandName": "Remove-PnPPage", "Id": 1148 }, { - "CommandName": "Remove-PnPPageComponent", "Rank": 1, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPPageComponent", "Id": 1149 }, { - "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "CommandName": "Remove-PnPPlannerBucket", "Id": 1150 }, { - "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "CommandName": "Remove-PnPPlannerPlan", "Id": 1151 }, { - "CommandName": "Remove-PnPPlannerRoster", "Rank": 1, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Remove-PnPPlannerRoster", "Id": 1152 }, { - "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPPlannerRosterMember", "Id": 1153 }, { - "CommandName": "Remove-PnPPlannerTask", "Rank": 1, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "CommandName": "Remove-PnPPlannerTask", "Id": 1154 }, { - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1155 }, { - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1156 }, { - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1157 }, { - "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Remove-PnPPublishingImageRendition", "Id": 1158 }, { - "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "CommandName": "Remove-PnPRoleDefinition", "Id": 1159 }, { - "CommandName": "Remove-PnPSdnProvider", "Rank": 1, "Command": "Remove-PnPSdnProvider -Confirm:false", + "CommandName": "Remove-PnPSdnProvider", "Id": 1160 }, { - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1161 }, { - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1162 }, { - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1163 }, { - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1164 }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1165 }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1166 }, { - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Id": 1167 }, { - "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, "Command": "Remove-PnPSiteCollectionTermStore", + "CommandName": "Remove-PnPSiteCollectionTermStore", "Id": 1168 }, { - "CommandName": "Remove-PnPSiteDesign", "Rank": 1, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesign", "Id": 1169 }, { - "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesignTask", "Id": 1170 }, { - "CommandName": "Remove-PnPSiteGroup", "Rank": 1, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Remove-PnPSiteGroup", "Id": 1171 }, { - "CommandName": "Remove-PnPSiteGroup", "Rank": 2, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "CommandName": "Remove-PnPSiteGroup", "Id": 1172 }, { - "CommandName": "Remove-PnPSiteScript", "Rank": 1, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteScript", "Id": 1173 }, { - "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Remove-PnPSiteUserInvitations", "Id": 1174 }, { - "CommandName": "Remove-PnPStorageEntity", "Rank": 1, "Command": "Remove-PnPStorageEntity -Key MyKey", + "CommandName": "Remove-PnPStorageEntity", "Id": 1175 }, { - "CommandName": "Remove-PnPStorageEntity", "Rank": 2, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Remove-PnPStorageEntity", "Id": 1176 }, { - "CommandName": "Remove-PnPStoredCredential", "Rank": 1, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "CommandName": "Remove-PnPStoredCredential", "Id": 1177 }, { - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "CommandName": "Remove-PnPTaxonomyItem", "Id": 1178 }, { - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "CommandName": "Remove-PnPTaxonomyItem", "Id": 1179 }, { - "CommandName": "Remove-PnPTeamsApp", "Rank": 1, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "CommandName": "Remove-PnPTeamsApp", "Id": 1180 }, { - "CommandName": "Remove-PnPTeamsApp", "Rank": 2, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "CommandName": "Remove-PnPTeamsApp", "Id": 1181 }, { - "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "CommandName": "Remove-PnPTeamsChannel", "Id": 1182 }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1183 }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1184 }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1185 }, { - "CommandName": "Remove-PnPTeamsTab", "Rank": 1, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "CommandName": "Remove-PnPTeamsTab", "Id": 1186 }, { - "CommandName": "Remove-PnPTeamsTab", "Rank": 2, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "CommandName": "Remove-PnPTeamsTab", "Id": 1187 }, { - "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", + "CommandName": "Remove-PnPTeamsTab", "Id": 1188 }, { - "CommandName": "Remove-PnPTeamsTag", "Rank": 1, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Remove-PnPTeamsTag", "Id": 1189 }, { - "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Remove-PnPTeamsTeam", "Id": 1190 }, { - "CommandName": "Remove-PnPTeamsTeam", "Rank": 2, "Command": "Remove-PnPTeamsTeam -Identity testteam", + "CommandName": "Remove-PnPTeamsTeam", "Id": 1191 }, { - "CommandName": "Remove-PnPTeamsUser", "Rank": 1, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "CommandName": "Remove-PnPTeamsUser", "Id": 1192 }, { - "CommandName": "Remove-PnPTeamsUser", "Rank": 2, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Remove-PnPTeamsUser", "Id": 1193 }, { - "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Remove-PnPTenantCdnOrigin", "Id": 1194 }, { - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1195 }, { - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1196 }, { - "CommandName": "Remove-PnPTenantSite", "Rank": 1, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantSite", "Id": 1197 }, { - "CommandName": "Remove-PnPTenantSite", "Rank": 2, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "CommandName": "Remove-PnPTenantSite", "Id": 1198 }, { - "CommandName": "Remove-PnPTenantSite", "Rank": 3, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "CommandName": "Remove-PnPTenantSite", "Id": 1199 }, { - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, "Command": "Remove-PnPTenantSyncClientRestriction", + "CommandName": "Remove-PnPTenantSyncClientRestriction", "Id": 1200 }, { - "CommandName": "Remove-PnPTenantTheme", "Rank": 1, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Remove-PnPTenantTheme", "Id": 1201 }, { - "CommandName": "Remove-PnPTerm", "Rank": 1, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTerm", "Id": 1202 }, { - "CommandName": "Remove-PnPTerm", "Rank": 2, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTerm", "Id": 1203 }, { - "CommandName": "Remove-PnPTermGroup", "Rank": 1, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTermGroup", "Id": 1204 }, { - "CommandName": "Remove-PnPTermGroup", "Rank": 2, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "CommandName": "Remove-PnPTermGroup", "Id": 1205 }, { - "CommandName": "Remove-PnPTermGroup", "Rank": 3, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "CommandName": "Remove-PnPTermGroup", "Id": 1206 }, { - "CommandName": "Remove-PnPTermLabel", "Rank": 1, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "CommandName": "Remove-PnPTermLabel", "Id": 1207 }, { - "CommandName": "Remove-PnPTermLabel", "Rank": 2, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTermLabel", "Id": 1208 }, { - "CommandName": "Remove-PnPUser", "Rank": 1, "Command": "Remove-PnPUser -Identity 23", + "CommandName": "Remove-PnPUser", "Id": 1209 }, { - "CommandName": "Remove-PnPUser", "Rank": 2, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPUser", "Id": 1210 }, { - "CommandName": "Remove-PnPUser", "Rank": 3, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "CommandName": "Remove-PnPUser", "Id": 1211 }, { - "CommandName": "Remove-PnPUserInfo", "Rank": 1, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "CommandName": "Remove-PnPUserInfo", "Id": 1212 }, { - "CommandName": "Remove-PnPUserProfile", "Rank": 1, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Remove-PnPUserProfile", "Id": 1213 }, { - "CommandName": "Remove-PnPView", "Rank": 1, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "CommandName": "Remove-PnPView", "Id": 1214 }, { - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Id": 1215 }, { - "CommandName": "Remove-PnPWeb", "Rank": 1, "Command": "Remove-PnPWeb -Identity projectA", + "CommandName": "Remove-PnPWeb", "Id": 1216 }, { - "CommandName": "Remove-PnPWeb", "Rank": 2, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "CommandName": "Remove-PnPWeb", "Id": 1217 }, { - "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "CommandName": "Remove-PnPWebhookSubscription", "Id": 1218 }, { - "CommandName": "Remove-PnPWebPart", "Rank": 1, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPWebPart", "Id": 1219 }, { - "CommandName": "Remove-PnPWebPart", "Rank": 2, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "CommandName": "Remove-PnPWebPart", "Id": 1220 }, { - "CommandName": "Remove-PnPWikiPage", "Rank": 1, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "CommandName": "Remove-PnPWikiPage", "Id": 1221 }, { - "CommandName": "Rename-PnPFile", "Rank": 1, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile", "Id": 1222 }, { - "CommandName": "Rename-PnPFile", "Rank": 2, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile", "Id": 1223 }, { - "CommandName": "Rename-PnPFile", "Rank": 3, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "CommandName": "Rename-PnPFile", "Id": 1224 }, { - "CommandName": "Rename-PnPFolder", "Rank": 1, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "CommandName": "Rename-PnPFolder", "Id": 1225 }, { - "CommandName": "Repair-PnPSite", "Rank": 1, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Repair-PnPSite", "Id": 1226 }, { - "CommandName": "Repair-PnPSite", "Rank": 2, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Repair-PnPSite", "Id": 1227 }, { - "CommandName": "Request-PnPAccessToken", "Rank": 1, "Command": "Request-PnPAccessToken", + "CommandName": "Request-PnPAccessToken", "Id": 1228 }, { - "CommandName": "Request-PnPAccessToken", "Rank": 2, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "CommandName": "Request-PnPAccessToken", "Id": 1229 }, { - "CommandName": "Request-PnPAccessToken", "Rank": 3, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "CommandName": "Request-PnPAccessToken", "Id": 1230 }, { - "CommandName": "Request-PnPAccessToken", "Rank": 4, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "CommandName": "Request-PnPAccessToken", "Id": 1231 }, { - "CommandName": "Request-PnPPersonalSite", "Rank": 1, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "CommandName": "Request-PnPPersonalSite", "Id": 1232 }, { - "CommandName": "Request-PnPPersonalSite", "Rank": 2, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "CommandName": "Request-PnPPersonalSite", "Id": 1233 }, { - "CommandName": "Request-PnPReIndexList", "Rank": 1, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "CommandName": "Request-PnPReIndexList", "Id": 1234 }, { - "CommandName": "Request-PnPReIndexWeb", "Rank": 1, "Command": "Request-PnPReIndexWeb", + "CommandName": "Request-PnPReIndexWeb", "Id": 1235 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1236 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1237 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1238 }, { - "CommandName": "Reset-PnPFileVersion", "Rank": 1, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "CommandName": "Reset-PnPFileVersion", "Id": 1239 }, { - "CommandName": "Reset-PnPFileVersion", "Rank": 2, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "CommandName": "Reset-PnPFileVersion", "Id": 1240 }, { - "CommandName": "Reset-PnPLabel", "Rank": 1, "Command": "Reset-PnPLabel -List \"Demo List\"", + "CommandName": "Reset-PnPLabel", "Id": 1241 }, { - "CommandName": "Reset-PnPLabel", "Rank": 2, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "CommandName": "Reset-PnPLabel", "Id": 1242 }, { - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, "Command": "Reset-PnPMicrosoft365GroupExpiration", + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1243 }, { - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Id": 1244 }, { - "CommandName": "Resolve-PnPFolder", "Rank": 1, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "CommandName": "Resolve-PnPFolder", "Id": 1245 }, { - "CommandName": "Restore-PnPDeletedContainer", "Rank": 1, "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "CommandName": "Restore-PnPDeletedContainer", "Id": 1246 }, { - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Id": 1247 }, { - "CommandName": "Restore-PnPFileVersion", "Rank": 1, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion", "Id": 1248 }, { - "CommandName": "Restore-PnPFileVersion", "Rank": 2, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion", "Id": 1249 }, { - "CommandName": "Restore-PnPFileVersion", "Rank": 3, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Restore-PnPFileVersion", "Id": 1250 }, { - "CommandName": "Restore-PnPListItemVersion", "Rank": 1, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Restore-PnPListItemVersion", "Id": 1251 }, { - "CommandName": "Restore-PnPListItemVersion", "Rank": 2, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Restore-PnPListItemVersion", "Id": 1252 }, { - "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Restore-PnPRecycleBinItem", "Id": 1253 }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1254 }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1255 }, { - "CommandName": "Restore-PnPTenantSite", "Rank": 1, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantSite", "Id": 1256 }, { - "CommandName": "Restore-PnPTenantSite", "Rank": 2, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Restore-PnPTenantSite", "Id": 1257 }, { - "CommandName": "Restore-PnPTenantSite", "Rank": 3, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "CommandName": "Restore-PnPTenantSite", "Id": 1258 }, { - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "CommandName": "Revoke-PnPAzureADAppSitePermission", "Id": 1259 }, { - "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Revoke-PnPHubSiteRights", "Id": 1260 }, { - "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Revoke-PnPSiteDesignRights", "Id": 1261 }, { - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Id": 1262 }, { - "CommandName": "Revoke-PnPUserSession", "Rank": 1, "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "CommandName": "Revoke-PnPUserSession", "Id": 1263 }, { - "CommandName": "Save-PnPPageConversionLog", "Rank": 1, "Command": "Save-PnPPageConversionLog", + "CommandName": "Save-PnPPageConversionLog", "Id": 1264 }, { - "CommandName": "Save-PnPSiteTemplate", "Rank": 1, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "CommandName": "Save-PnPSiteTemplate", "Id": 1265 }, { - "CommandName": "Save-PnPTenantTemplate", "Rank": 1, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "CommandName": "Save-PnPTenantTemplate", "Id": 1266 }, { - "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\"", + "CommandName": "Send-PnPMail", "Id": 1267 }, { - "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", + "CommandName": "Send-PnPMail", "Id": 1268 }, { - "CommandName": "Send-PnPMail", "Rank": 3, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "CommandName": "Send-PnPMail", "Id": 1269 }, { - "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", + "CommandName": "Send-PnPMail", "Id": 1270 }, { - "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", + "CommandName": "Send-PnPMail", "Id": 1271 }, { - "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\"", + "CommandName": "Send-PnPMail", "Id": 1272 }, { - "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "CommandName": "Set-PnPAdaptiveScopeProperty", "Id": 1273 }, { - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Set-PnPApplicationCustomizer", "Id": 1274 }, { - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2, "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "CommandName": "Set-PnPApplicationCustomizer", "Id": 1275 }, { - "CommandName": "Set-PnPAppSideLoading", "Rank": 1, "Command": "Set-PnPAppSideLoading -On", + "CommandName": "Set-PnPAppSideLoading", "Id": 1276 }, { - "CommandName": "Set-PnPAppSideLoading", "Rank": 2, "Command": "Set-PnPAppSideLoading -Off", + "CommandName": "Set-PnPAppSideLoading", "Id": 1277 }, { - "CommandName": "Set-PnPAuditing", "Rank": 1, "Command": "Set-PnPAuditing -EnableAll", + "CommandName": "Set-PnPAuditing", "Id": 1278 }, { - "CommandName": "Set-PnPAuditing", "Rank": 2, "Command": "Set-PnPAuditing -DisableAll", + "CommandName": "Set-PnPAuditing", "Id": 1279 }, { - "CommandName": "Set-PnPAuditing", "Rank": 3, "Command": "Set-PnPAuditing -RetentionTime 7", + "CommandName": "Set-PnPAuditing", "Id": 1280 }, { - "CommandName": "Set-PnPAuditing", "Rank": 4, "Command": "Set-PnPAuditing -TrimAuditLog", + "CommandName": "Set-PnPAuditing", "Id": 1281 }, { - "CommandName": "Set-PnPAuditing", "Rank": 5, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "CommandName": "Set-PnPAuditing", "Id": 1282 }, { - "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "CommandName": "Set-PnPAvailablePageLayouts", "Id": 1283 }, { - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1284 }, { - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1285 }, { - "CommandName": "Set-PnPAzureADGroup", "Rank": 1, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup", "Id": 1286 }, { - "CommandName": "Set-PnPAzureADGroup", "Rank": 2, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup", "Id": 1287 }, { - "CommandName": "Set-PnPAzureADGroup", "Rank": 3, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPAzureADGroup", "Id": 1288 }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1289 }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1290 }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1291 }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1292 }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1293 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1294 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1295 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1296 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1297 }, { - "CommandName": "Set-PnPContentType", "Rank": 1, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPContentType", "Id": 1298 }, { - "CommandName": "Set-PnPContentType", "Rank": 2, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "CommandName": "Set-PnPContentType", "Id": 1299 }, { - "CommandName": "Set-PnPContentType", "Rank": 3, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPContentType", "Id": 1300 }, { - "CommandName": "Set-PnPContentType", "Rank": 4, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "CommandName": "Set-PnPContentType", "Id": 1301 }, { - "CommandName": "Set-PnPContentType", "Rank": 5, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "CommandName": "Set-PnPContentType", "Id": 1302 }, { - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1303 }, { - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1304 }, { - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 3, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1305 }, { - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1306 }, { - "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "CommandName": "Set-PnPDefaultContentTypeToList", "Id": 1307 }, { - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1308 }, { - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1309 }, { - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1310 }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1311 }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1312 }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1313 }, { - "CommandName": "Set-PnPDocumentSetField", "Rank": 1, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "CommandName": "Set-PnPDocumentSetField", "Id": 1314 }, { - "CommandName": "Set-PnPDocumentSetField", "Rank": 2, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "CommandName": "Set-PnPDocumentSetField", "Id": 1315 }, { - "CommandName": "Set-PnPField", "Rank": 1, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "CommandName": "Set-PnPField", "Id": 1316 }, { - "CommandName": "Set-PnPField", "Rank": 2, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "CommandName": "Set-PnPField", "Id": 1317 }, { - "CommandName": "Set-PnPField", "Rank": 3, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "CommandName": "Set-PnPField", "Id": 1318 }, { - "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedIn", "Id": 1319 }, { - "CommandName": "Set-PnPFileCheckedIn", "Rank": 2, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "CommandName": "Set-PnPFileCheckedIn", "Id": 1320 }, { - "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedOut", "Id": 1321 }, { - "CommandName": "Set-PnPFolderPermission", "Rank": 1, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPFolderPermission", "Id": 1322 }, { - "CommandName": "Set-PnPFolderPermission", "Rank": 2, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPFolderPermission", "Id": 1323 }, { - "CommandName": "Set-PnPFolderPermission", "Rank": 3, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPFolderPermission", "Id": 1324 }, { - "CommandName": "Set-PnPFooter", "Rank": 1, "Command": "Set-PnPFooter -Enabled:$true", + "CommandName": "Set-PnPFooter", "Id": 1325 }, { - "CommandName": "Set-PnPFooter", "Rank": 2, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "CommandName": "Set-PnPFooter", "Id": 1326 }, { - "CommandName": "Set-PnPFooter", "Rank": 3, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "CommandName": "Set-PnPFooter", "Id": 1327 }, { - "CommandName": "Set-PnPFooter", "Rank": 4, "Command": "Set-PnPFooter -LogoUrl \"\"", + "CommandName": "Set-PnPFooter", "Id": 1328 }, { - "CommandName": "Set-PnPGraphSubscription", "Rank": 1, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "CommandName": "Set-PnPGraphSubscription", "Id": 1329 }, { - "CommandName": "Set-PnPGroup", "Rank": 1, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "CommandName": "Set-PnPGroup", "Id": 1330 }, { - "CommandName": "Set-PnPGroup", "Rank": 2, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "CommandName": "Set-PnPGroup", "Id": 1331 }, { - "CommandName": "Set-PnPGroupPermissions", "Rank": 1, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "CommandName": "Set-PnPGroupPermissions", "Id": 1332 }, { - "CommandName": "Set-PnPGroupPermissions", "Rank": 2, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "CommandName": "Set-PnPGroupPermissions", "Id": 1333 }, { - "CommandName": "Set-PnPGroupPermissions", "Rank": 3, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions", "Id": 1334 }, { - "CommandName": "Set-PnPGroupPermissions", "Rank": 4, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions", "Id": 1335 }, { - "CommandName": "Set-PnPGroupPermissions", "Rank": 5, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "CommandName": "Set-PnPGroupPermissions", "Id": 1336 }, { - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "CommandName": "Set-PnPHideDefaultThemes", "Id": 1337 }, { - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "CommandName": "Set-PnPHideDefaultThemes", "Id": 1338 }, { - "CommandName": "Set-PnPHomePage", "Rank": 1, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "CommandName": "Set-PnPHomePage", "Id": 1339 }, { - "CommandName": "Set-PnPHomePage", "Rank": 2, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "CommandName": "Set-PnPHomePage", "Id": 1340 }, { - "CommandName": "Set-PnPHomeSite", "Rank": 1, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "CommandName": "Set-PnPHomeSite", "Id": 1341 }, { - "CommandName": "Set-PnPHomeSite", "Rank": 2, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "CommandName": "Set-PnPHomeSite", "Id": 1342 }, { - "CommandName": "Set-PnPHubSite", "Rank": 1, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "CommandName": "Set-PnPHubSite", "Id": 1343 }, { - "CommandName": "Set-PnPHubSite", "Rank": 2, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "CommandName": "Set-PnPHubSite", "Id": 1344 }, { - "CommandName": "Set-PnPHubSite", "Rank": 3, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "CommandName": "Set-PnPHubSite", "Id": 1345 }, { - "CommandName": "Set-PnPHubSite", "Rank": 4, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "CommandName": "Set-PnPHubSite", "Id": 1346 }, { - "CommandName": "Set-PnPHubSite", "Rank": 5, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "CommandName": "Set-PnPHubSite", "Id": 1347 }, { - "CommandName": "Set-PnPHubSite", "Rank": 6, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "CommandName": "Set-PnPHubSite", "Id": 1348 }, { - "CommandName": "Set-PnPImageListItemColumn", "Rank": 1, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "CommandName": "Set-PnPImageListItemColumn", "Id": 1349 }, { - "CommandName": "Set-PnPImageListItemColumn", "Rank": 2, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "CommandName": "Set-PnPImageListItemColumn", "Id": 1350 }, { - "CommandName": "Set-PnPIndexedProperties", "Rank": 1, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "CommandName": "Set-PnPIndexedProperties", "Id": 1351 }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1352 }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1353 }, { - "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "CommandName": "Set-PnPKnowledgeHubSite", "Id": 1354 }, { - "CommandName": "Set-PnPLabel", "Rank": 1, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "CommandName": "Set-PnPLabel", "Id": 1355 }, { - "CommandName": "Set-PnPLabel", "Rank": 2, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "CommandName": "Set-PnPLabel", "Id": 1356 }, { - "CommandName": "Set-PnPList", "Rank": 1, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "CommandName": "Set-PnPList", "Id": 1357 }, { - "CommandName": "Set-PnPList", "Rank": 2, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "CommandName": "Set-PnPList", "Id": 1358 }, { - "CommandName": "Set-PnPList", "Rank": 3, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "CommandName": "Set-PnPList", "Id": 1359 }, { - "CommandName": "Set-PnPList", "Rank": 4, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "CommandName": "Set-PnPList", "Id": 1360 }, { - "CommandName": "Set-PnPList", "Rank": 5, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "CommandName": "Set-PnPList", "Id": 1361 }, { - "CommandName": "Set-PnPList", "Rank": 6, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "CommandName": "Set-PnPList", "Id": 1362 }, { - "CommandName": "Set-PnPList", "Rank": 7, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "CommandName": "Set-PnPList", "Id": 1363 }, { - "CommandName": "Set-PnPList", "Rank": 8, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPList", "Id": 1364 }, { - "CommandName": "Set-PnPList", "Rank": 9, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "CommandName": "Set-PnPList", "Id": 1365 }, { - "CommandName": "Set-PnPList", "Rank": 10, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "CommandName": "Set-PnPList", "Id": 1366 }, { - "CommandName": "Set-PnPList", "Rank": 11, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "CommandName": "Set-PnPList", "Id": 1367 }, { - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1368 }, { - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 2, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1369 }, { - "CommandName": "Set-PnPListItem", "Rank": 1, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", "Id": 1370 }, { - "CommandName": "Set-PnPListItem", "Rank": 2, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", "Id": 1371 }, { - "CommandName": "Set-PnPListItem", "Rank": 3, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", "Id": 1372 }, { - "CommandName": "Set-PnPListItem", "Rank": 4, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "CommandName": "Set-PnPListItem", "Id": 1373 }, { - "CommandName": "Set-PnPListItem", "Rank": 5, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "CommandName": "Set-PnPListItem", "Id": 1374 }, { - "CommandName": "Set-PnPListItemAsRecord", "Rank": 1, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Set-PnPListItemAsRecord", "Id": 1375 }, { - "CommandName": "Set-PnPListItemAsRecord", "Rank": 2, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "CommandName": "Set-PnPListItemAsRecord", "Id": 1376 }, { - "CommandName": "Set-PnPListItemPermission", "Rank": 1, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListItemPermission", "Id": 1377 }, { - "CommandName": "Set-PnPListItemPermission", "Rank": 2, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListItemPermission", "Id": 1378 }, { - "CommandName": "Set-PnPListItemPermission", "Rank": 3, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPListItemPermission", "Id": 1379 }, { - "CommandName": "Set-PnPListItemPermission", "Rank": 4, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "CommandName": "Set-PnPListItemPermission", "Id": 1380 }, { - "CommandName": "Set-PnPListItemPermission", "Rank": 5, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "CommandName": "Set-PnPListItemPermission", "Id": 1381 }, { - "CommandName": "Set-PnPListPermission", "Rank": 1, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListPermission", "Id": 1382 }, { - "CommandName": "Set-PnPListPermission", "Rank": 2, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListPermission", "Id": 1383 }, { - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "CommandName": "Set-PnPListRecordDeclaration", "Id": 1384 }, { - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "CommandName": "Set-PnPListRecordDeclaration", "Id": 1385 }, { - "CommandName": "Set-PnPMasterPage", "Rank": 1, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", "Id": 1386 }, { - "CommandName": "Set-PnPMasterPage", "Rank": 2, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", "Id": 1387 }, { - "CommandName": "Set-PnPMasterPage", "Rank": 3, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", "Id": 1388 }, { - "CommandName": "Set-PnPMasterPage", "Rank": 4, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", "Id": 1389 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1390 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1391 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1392 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1393 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1394 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1395 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1396 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1397 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1398 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1399 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1400 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1401 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1402 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1403 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1404 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1405 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1406 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1407 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1408 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1409 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1410 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1411 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1412 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1413 }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1414 }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1415 }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 1, "Command": "Set-PnPMinimalDownloadStrategy -Off", + "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1416 }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 2, "Command": "Set-PnPMinimalDownloadStrategy -On", + "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1417 }, { - "CommandName": "Set-PnPPage", "Rank": 1, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "CommandName": "Set-PnPPage", "Id": 1418 }, { - "CommandName": "Set-PnPPage", "Rank": 2, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "CommandName": "Set-PnPPage", "Id": 1419 }, { - "CommandName": "Set-PnPPage", "Rank": 3, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "CommandName": "Set-PnPPage", "Id": 1420 }, { - "CommandName": "Set-PnPPage", "Rank": 4, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "CommandName": "Set-PnPPage", "Id": 1421 }, { - "CommandName": "Set-PnPPage", "Rank": 5, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "CommandName": "Set-PnPPage", "Id": 1422 }, { - "CommandName": "Set-PnPPage", "Rank": 6, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "CommandName": "Set-PnPPage", "Id": 1423 }, { - "CommandName": "Set-PnPPage", "Rank": 7, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Set-PnPPage", "Id": 1424 }, { - "CommandName": "Set-PnPPage", "Rank": 8, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "CommandName": "Set-PnPPage", "Id": 1425 }, { - "CommandName": "Set-PnPPage", "Rank": 9, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Set-PnPPage", "Id": 1426 }, { - "CommandName": "Set-PnPPage", "Rank": 10, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Set-PnPPage", "Id": 1427 }, { - "CommandName": "Set-PnPPage", "Rank": 11, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "CommandName": "Set-PnPPage", "Id": 1428 }, { - "CommandName": "Set-PnPPageTextPart", "Rank": 1, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "CommandName": "Set-PnPPageTextPart", "Id": 1429 }, { - "CommandName": "Set-PnPPageWebPart", "Rank": 1, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "CommandName": "Set-PnPPageWebPart", "Id": 1430 }, { - "CommandName": "Set-PnPPageWebPart", "Rank": 2, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "CommandName": "Set-PnPPageWebPart", "Id": 1431 }, { - "CommandName": "Set-PnPPlannerBucket", "Rank": 1, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "CommandName": "Set-PnPPlannerBucket", "Id": 1432 }, { - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "CommandName": "Set-PnPPlannerConfiguration", "Id": 1433 }, { - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "CommandName": "Set-PnPPlannerConfiguration", "Id": 1434 }, { - "CommandName": "Set-PnPPlannerPlan", "Rank": 1, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "CommandName": "Set-PnPPlannerPlan", "Id": 1435 }, { - "CommandName": "Set-PnPPlannerTask", "Rank": 1, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "CommandName": "Set-PnPPlannerTask", "Id": 1436 }, { - "CommandName": "Set-PnPPlannerTask", "Rank": 2, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "CommandName": "Set-PnPPlannerTask", "Id": 1437 }, { - "CommandName": "Set-PnPPlannerTask", "Rank": 3, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "CommandName": "Set-PnPPlannerTask", "Id": 1438 }, { - "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPPlannerUserPolicy", "Id": 1439 }, { - "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "CommandName": "Set-PnPPropertyBagValue", "Id": 1440 }, { - "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "CommandName": "Set-PnPPropertyBagValue", "Id": 1441 }, { - "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "CommandName": "Set-PnPPropertyBagValue", "Id": 1442 }, { - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1443 }, { - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2, "Command": "Set-PnPRequestAccessEmails -Disabled", + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1444 }, { - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1445 }, { - "CommandName": "Set-PnPRoleDefinition", "Rank": 1, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "CommandName": "Set-PnPRoleDefinition", "Id": 1446 }, { - "CommandName": "Set-PnPRoleDefinition", "Rank": 2, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "CommandName": "Set-PnPRoleDefinition", "Id": 1447 }, { - "CommandName": "Set-PnPRoleDefinition", "Rank": 3, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "CommandName": "Set-PnPRoleDefinition", "Id": 1448 }, { - "CommandName": "Set-PnPRoleDefinition", "Rank": 4, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "CommandName": "Set-PnPRoleDefinition", "Id": 1449 }, { - "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, "Command": "Set-PnPSearchConfiguration -Configuration $config", + "CommandName": "Set-PnPSearchConfiguration", "Id": 1450 }, { - "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Set-PnPSearchConfiguration", "Id": 1451 }, { - "CommandName": "Set-PnPSearchConfiguration", "Rank": 3, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration", "Id": 1452 }, { - "CommandName": "Set-PnPSearchConfiguration", "Rank": 4, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration", "Id": 1453 }, { - "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", + "CommandName": "Set-PnPSearchExternalItem", "Id": 1454 }, { - "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\"", + "CommandName": "Set-PnPSearchExternalItem", "Id": 1455 }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 1, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "CommandName": "Set-PnPSearchSettings", "Id": 1456 }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 2, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "CommandName": "Set-PnPSearchSettings", "Id": 1457 }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 3, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "CommandName": "Set-PnPSearchSettings", "Id": 1458 }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 4, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "CommandName": "Set-PnPSearchSettings", "Id": 1459 }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 5, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "CommandName": "Set-PnPSearchSettings", "Id": 1460 }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 6, "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "CommandName": "Set-PnPSearchSettings", "Id": 1461 }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 7, "Command": "Set-PnPSearchSettings -SearchScope Hub", + "CommandName": "Set-PnPSearchSettings", "Id": 1462 }, { - "CommandName": "Set-PnPSite", "Rank": 1, "Command": "Set-PnPSite -Classification \"HBI\"", + "CommandName": "Set-PnPSite", "Id": 1463 }, { - "CommandName": "Set-PnPSite", "Rank": 2, "Command": "Set-PnPSite -Classification $null", + "CommandName": "Set-PnPSite", "Id": 1464 }, { - "CommandName": "Set-PnPSite", "Rank": 3, "Command": "Set-PnPSite -DisableFlows", + "CommandName": "Set-PnPSite", "Id": 1465 }, { - "CommandName": "Set-PnPSite", "Rank": 4, "Command": "Set-PnPSite -DisableFlows:$false", + "CommandName": "Set-PnPSite", "Id": 1466 }, { - "CommandName": "Set-PnPSite", "Rank": 5, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "CommandName": "Set-PnPSite", "Id": 1467 }, { - "CommandName": "Set-PnPSite", "Rank": 6, "Command": "Set-PnPSite -NoScriptSite $false", + "CommandName": "Set-PnPSite", "Id": 1468 }, { - "CommandName": "Set-PnPSite", "Rank": 7, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPSite", "Id": 1469 }, { - "CommandName": "Set-PnPSite", "Rank": 8, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "CommandName": "Set-PnPSite", "Id": 1470 }, { - "CommandName": "Set-PnPSite", "Rank": 9, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "CommandName": "Set-PnPSite", "Id": 1471 }, { - "CommandName": "Set-PnPSite", "Rank": 10, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "CommandName": "Set-PnPSite", "Id": 1472 }, { - "CommandName": "Set-PnPSite", "Rank": 11, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "CommandName": "Set-PnPSite", "Id": 1473 }, { - "CommandName": "Set-PnPSite", "Rank": 12, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "CommandName": "Set-PnPSite", "Id": 1474 }, { - "CommandName": "Set-PnPSite", "Rank": 13, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "CommandName": "Set-PnPSite", "Id": 1475 }, { - "CommandName": "Set-PnPSite", "Rank": 14, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", "Id": 1476 }, { - "CommandName": "Set-PnPSite", "Rank": 15, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", "Id": 1477 }, { - "CommandName": "Set-PnPSite", "Rank": 16, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", "Id": 1478 }, { - "CommandName": "Set-PnPSite", "Rank": 17, "Command": "Set-PnPSite -CancelVPForExistingLibs", + "CommandName": "Set-PnPSite", "Id": 1479 }, { - "CommandName": "Set-PnPSiteClassification", "Rank": 1, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "CommandName": "Set-PnPSiteClassification", "Id": 1480 }, { - "CommandName": "Set-PnPSiteClosure", "Rank": 1, "Command": "Set-PnPSiteClosure -State Open", + "CommandName": "Set-PnPSiteClosure", "Id": 1481 }, { - "CommandName": "Set-PnPSiteClosure", "Rank": 2, "Command": "Set-PnPSiteClosure -State Closed", + "CommandName": "Set-PnPSiteClosure", "Id": 1482 }, { - "CommandName": "Set-PnPSiteDesign", "Rank": 1, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "CommandName": "Set-PnPSiteDesign", "Id": 1483 }, { - "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\"", + "CommandName": "Set-PnPSiteDesign", "Id": 1484 }, { - "CommandName": "Set-PnPSiteGroup", "Rank": 1, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "CommandName": "Set-PnPSiteGroup", "Id": 1485 }, { - "CommandName": "Set-PnPSiteGroup", "Rank": 2, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "CommandName": "Set-PnPSiteGroup", "Id": 1486 }, { - "CommandName": "Set-PnPSitePolicy", "Rank": 1, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Set-PnPSitePolicy", "Id": 1487 }, { - "CommandName": "Set-PnPSiteScript", "Rank": 1, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSiteScript", "Id": 1488 }, { - "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSiteScriptPackage", "Id": 1489 }, { - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1490 }, { - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1491 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1492 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1493 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1494 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1495 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1496 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 6, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1497 }, { - "CommandName": "Set-PnPStorageEntity", "Rank": 1, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPStorageEntity", "Id": 1498 }, { - "CommandName": "Set-PnPStorageEntity", "Rank": 2, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPStorageEntity", "Id": 1499 }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1500 }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1501 }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1502 }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1503 }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1504 }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 2, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1505 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1506 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1507 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1508 }, { - "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1, "Command": "Set-PnPTeamifyPromptHidden", + "CommandName": "Set-PnPTeamifyPromptHidden", "Id": 1509 }, { - "CommandName": "Set-PnPTeamsChannel", "Rank": 1, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "CommandName": "Set-PnPTeamsChannel", "Id": 1510 }, { - "CommandName": "Set-PnPTeamsChannel", "Rank": 2, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "CommandName": "Set-PnPTeamsChannel", "Id": 1511 }, { - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "CommandName": "Set-PnpTeamsChannelUser", "Id": 1512 }, { - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "CommandName": "Set-PnpTeamsChannelUser", "Id": 1513 }, { - "CommandName": "Set-PnPTeamsTab", "Rank": 1, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "CommandName": "Set-PnPTeamsTab", "Id": 1514 }, { - "CommandName": "Set-PnPTeamsTag", "Rank": 1, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "CommandName": "Set-PnPTeamsTag", "Id": 1515 }, { - "CommandName": "Set-PnPTeamsTeam", "Rank": 1, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "CommandName": "Set-PnPTeamsTeam", "Id": 1516 }, { - "CommandName": "Set-PnPTeamsTeam", "Rank": 2, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "CommandName": "Set-PnPTeamsTeam", "Id": 1517 }, { - "CommandName": "Set-PnPTeamsTeam", "Rank": 3, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "CommandName": "Set-PnPTeamsTeam", "Id": 1518 }, { - "CommandName": "Set-PnPTeamsTeam", "Rank": 4, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "CommandName": "Set-PnPTeamsTeam", "Id": 1519 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1520 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1521 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1522 }, { - "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "CommandName": "Set-PnPTeamsTeamPicture", "Id": 1523 }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, "Command": "Set-PnPTemporarilyDisableAppBar $true", + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1524 }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, "Command": "Set-PnPTemporarilyDisableAppBar $false", + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1525 }, { - "CommandName": "Set-PnPTenant", "Rank": 1, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", + "CommandName": "Set-PnPTenant", "Id": 1526 }, { - "CommandName": "Set-PnPTenant", "Rank": 2, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "CommandName": "Set-PnPTenant", "Id": 1527 }, { - "CommandName": "Set-PnPTenant", "Rank": 3, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "CommandName": "Set-PnPTenant", "Id": 1528 }, { - "CommandName": "Set-PnPTenant", "Rank": 4, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "CommandName": "Set-PnPTenant", "Id": 1529 }, { - "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "CommandName": "Set-PnPTenantAppCatalogUrl", "Id": 1530 }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1531 }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1532 }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1533 }, { - "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\"", + "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1534 }, { - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1535 }, { - "CommandName": "Set-PnPTenantSite", "Rank": 1, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "CommandName": "Set-PnPTenantSite", "Id": 1536 }, { - "CommandName": "Set-PnPTenantSite", "Rank": 2, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "CommandName": "Set-PnPTenantSite", "Id": 1537 }, { - "CommandName": "Set-PnPTenantSite", "Rank": 3, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPTenantSite", "Id": 1538 }, { - "CommandName": "Set-PnPTenantSite", "Rank": 4, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Set-PnPTenantSite", "Id": 1539 }, { - "CommandName": "Set-PnPTenantSite", "Rank": 5, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "CommandName": "Set-PnPTenantSite", "Id": 1540 }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1541 }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1542 }, { - "CommandName": "Set-PnPTerm", "Rank": 1, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "CommandName": "Set-PnPTerm", "Id": 1543 }, { - "CommandName": "Set-PnPTerm", "Rank": 2, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTerm", "Id": 1544 }, { - "CommandName": "Set-PnPTerm", "Rank": 3, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTerm", "Id": 1545 }, { - "CommandName": "Set-PnPTerm", "Rank": 4, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "CommandName": "Set-PnPTerm", "Id": 1546 }, { - "CommandName": "Set-PnPTermGroup", "Rank": 1, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "CommandName": "Set-PnPTermGroup", "Id": 1547 }, { - "CommandName": "Set-PnPTermSet", "Rank": 1, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "CommandName": "Set-PnPTermSet", "Id": 1548 }, { - "CommandName": "Set-PnPTermSet", "Rank": 2, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "CommandName": "Set-PnPTermSet", "Id": 1549 }, { - "CommandName": "Set-PnPTermSet", "Rank": 3, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "CommandName": "Set-PnPTermSet", "Id": 1550 }, { - "CommandName": "Set-PnPTheme", "Rank": 1, "Command": "Set-PnPTheme", + "CommandName": "Set-PnPTheme", "Id": 1551 }, { - "CommandName": "Set-PnPTheme", "Rank": 2, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "CommandName": "Set-PnPTheme", "Id": 1552 }, { - "CommandName": "Set-PnPTheme", "Rank": 3, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "CommandName": "Set-PnPTheme", "Id": 1553 }, { - "CommandName": "Set-PnPTheme", "Rank": 4, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "CommandName": "Set-PnPTheme", "Id": 1554 }, { - "CommandName": "Set-PnPTraceLog", "Rank": 1, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "CommandName": "Set-PnPTraceLog", "Id": 1555 }, { - "CommandName": "Set-PnPTraceLog", "Rank": 2, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "CommandName": "Set-PnPTraceLog", "Id": 1556 }, { - "CommandName": "Set-PnPTraceLog", "Rank": 3, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "CommandName": "Set-PnPTraceLog", "Id": 1557 }, { - "CommandName": "Set-PnPTraceLog", "Rank": 4, "Command": "Set-PnPTraceLog -Off", + "CommandName": "Set-PnPTraceLog", "Id": 1558 }, { - "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "CommandName": "Set-PnPUserOneDriveQuota", "Id": 1559 }, { - "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "CommandName": "Set-PnPUserProfileProperty", "Id": 1560 }, { - "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "CommandName": "Set-PnPUserProfileProperty", "Id": 1561 }, { - "CommandName": "Set-PnPView", "Rank": 1, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "CommandName": "Set-PnPView", "Id": 1562 }, { - "CommandName": "Set-PnPView", "Rank": 2, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "CommandName": "Set-PnPView", "Id": 1563 }, { - "CommandName": "Set-PnPView", "Rank": 3, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", + "CommandName": "Set-PnPView", "Id": 1564 }, { - "CommandName": "Set-PnPView", "Rank": 4, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "CommandName": "Set-PnPView", "Id": 1565 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 1, "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", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1566 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1567 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 3, "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", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1568 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1569 }, { - "CommandName": "Set-PnPWeb", "Rank": 1, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "CommandName": "Set-PnPWeb", "Id": 1570 }, { - "CommandName": "Set-PnPWeb", "Rank": 2, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "CommandName": "Set-PnPWeb", "Id": 1571 }, { - "CommandName": "Set-PnPWeb", "Rank": 3, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "CommandName": "Set-PnPWeb", "Id": 1572 }, { - "CommandName": "Set-PnPWeb", "Rank": 4, "Command": "Set-PnPWeb -NoCrawl:$true", + "CommandName": "Set-PnPWeb", "Id": 1573 }, { - "CommandName": "Set-PnPWebHeader", "Rank": 1, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "CommandName": "Set-PnPWebHeader", "Id": 1574 }, { - "CommandName": "Set-PnPWebHeader", "Rank": 2, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "CommandName": "Set-PnPWebHeader", "Id": 1575 }, { - "CommandName": "Set-PnPWebHeader", "Rank": 3, "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "CommandName": "Set-PnPWebHeader", "Id": 1576 }, { - "CommandName": "Set-PnPWebhookSubscription", "Rank": 1, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "CommandName": "Set-PnPWebhookSubscription", "Id": 1577 }, { - "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\"", + "CommandName": "Set-PnPWebhookSubscription", "Id": 1578 }, { - "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\"", + "CommandName": "Set-PnPWebPartProperty", "Id": 1579 }, { - "CommandName": "Set-PnPWebPermission", "Rank": 1, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", "Id": 1580 }, { - "CommandName": "Set-PnPWebPermission", "Rank": 2, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", "Id": 1581 }, { - "CommandName": "Set-PnPWebPermission", "Rank": 3, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", "Id": 1582 }, { - "CommandName": "Set-PnPWebPermission", "Rank": 4, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "CommandName": "Set-PnPWebPermission", "Id": 1583 }, { - "CommandName": "Set-PnPWebTheme", "Rank": 1, "Command": "Set-PnPWebTheme -Theme MyTheme", + "CommandName": "Set-PnPWebTheme", "Id": 1584 }, { - "CommandName": "Set-PnPWebTheme", "Rank": 2, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "CommandName": "Set-PnPWebTheme", "Id": 1585 }, { - "CommandName": "Set-PnPWikiPageContent", "Rank": 1, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "CommandName": "Set-PnPWikiPageContent", "Id": 1586 }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 1, "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "CommandName": "Submit-PnPSearchQuery", "Id": 1587 }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 2, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "CommandName": "Submit-PnPSearchQuery", "Id": 1588 }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 3, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "CommandName": "Submit-PnPSearchQuery", "Id": 1589 }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 4, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "CommandName": "Submit-PnPSearchQuery", "Id": 1590 }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 5, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "CommandName": "Submit-PnPSearchQuery", "Id": 1591 }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 6, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "CommandName": "Submit-PnPSearchQuery", "Id": 1592 }, { - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1593 }, { - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html", + "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1594 }, { - "CommandName": "Sync-PnPAppToTeams", "Rank": 1, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Sync-PnPAppToTeams", "Id": 1595 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1596 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1597 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1598 }, { - "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "CommandName": "Test-PnPListItemIsRecord", "Id": 1599 }, { - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Id": 1600 }, { - "CommandName": "Test-PnPSite", "Rank": 1, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Test-PnPSite", "Id": 1601 }, { - "CommandName": "Test-PnPSite", "Rank": 2, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Test-PnPSite", "Id": 1602 }, { - "CommandName": "Test-PnPTenantTemplate", "Rank": 1, "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "CommandName": "Test-PnPTenantTemplate", "Id": 1603 }, { - "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "CommandName": "Undo-PnPFileCheckedOut", "Id": 1604 }, { - "CommandName": "Uninstall-PnPApp", "Rank": 1, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Uninstall-PnPApp", "Id": 1605 }, { - "CommandName": "Uninstall-PnPApp", "Rank": 2, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Uninstall-PnPApp", "Id": 1606 }, { - "CommandName": "Unpublish-PnPApp", "Rank": 1, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Unpublish-PnPApp", "Id": 1607 }, { - "CommandName": "Unpublish-PnPApp", "Rank": 2, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Unpublish-PnPApp", "Id": 1608 }, { - "CommandName": "Unpublish-PnPContentType", "Rank": 1, "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "CommandName": "Unpublish-PnPContentType", "Id": 1609 }, { - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "CommandName": "Unpublish-PnPSyntexModel", "Id": 1610 }, { - "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", + "CommandName": "Unpublish-PnPSyntexModel", "Id": 1611 }, { - "CommandName": "Unregister-PnPHubSite", "Rank": 1, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Unregister-PnPHubSite", "Id": 1612 }, { - "CommandName": "Update-PnPApp", "Rank": 1, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Update-PnPApp", "Id": 1613 }, { - "CommandName": "Update-PnPApp", "Rank": 2, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Update-PnPApp", "Id": 1614 }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1615 }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1616 }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1617 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1618 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1619 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1620 }, { - "CommandName": "Update-PnPTeamsApp", "Rank": 1, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "CommandName": "Update-PnPTeamsApp", "Id": 1621 }, { - "CommandName": "Update-PnPTeamsUser", "Rank": 1, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Update-PnPTeamsUser", "Id": 1622 }, { - "CommandName": "Update-PnPTeamsUser", "Rank": 2, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Update-PnPTeamsUser", "Id": 1623 }, { - "CommandName": "Update-PnPTeamsUser", "Rank": 3, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "CommandName": "Update-PnPTeamsUser", "Id": 1624 }, { - "CommandName": "Update-PnPUserType", "Rank": 1, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "CommandName": "Update-PnPUserType", "Id": 1625 } ] diff --git a/version.txt b/version.txt index 1a7f2caa8..16d83b4e2 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.32 \ No newline at end of file +2.3.33 \ No newline at end of file From 8d2789a7a5ee22c9e9a08c2564c2166ec89b7a72 Mon Sep 17 00:00:00 2001 From: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Date: Tue, 23 Jan 2024 02:46:07 +0000 Subject: [PATCH 45/53] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9750 ++++++++--------- version.txt | 2 +- 3 files changed, 4877 insertions(+), 4877 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index e0dcc8183..ac281cbd1 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -8a5dd2a548fbc3f20878dad31266dc9081556e5a \ No newline at end of file +1f4fe8cfb168fe50473a4a331710b917e3b5ca40 \ 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 150513531..f4e895507 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9752 +1,9752 @@ [ { - "Rank": 1, - "Command": "Add-PnPAlert -List \"Demo List\"", "CommandName": "Add-PnPAlert", - "Id": 1 + "Command": "Add-PnPAlert -List \"Demo List\"", + "Id": 1, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", "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": 2, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "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": 3, + "Rank": 3 }, { - "Rank": 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))", "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": 4, + "Rank": 4 }, { - "Rank": 1, - "Command": "Add-PnPApp -Path ./myapp.sppkg", "CommandName": "Add-PnPApp", - "Id": 5 + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Id": 5, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "CommandName": "Add-PnPApp", - "Id": 6 + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Id": 6, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "CommandName": "Add-PnPApp", - "Id": 7 + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Id": 7, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "CommandName": "Add-PnPApp", - "Id": 8 + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Id": 8, + "Rank": 4 }, { - "Rank": 1, - "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", "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": 9, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10 + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Id": 10, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11 + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Id": 11, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupMember", - "Id": 12 + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 12, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupMember", - "Id": 13 + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 13, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupMember", - "Id": 14 + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 14, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 15 + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 15, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 16 + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 16, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 17 + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 17, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 18 + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "Id": 18, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 19 + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "Id": 19, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "CommandName": "Add-PnPContentType", - "Id": 20 + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", + "Id": 20, + "Rank": 1 }, { - "Rank": 2, - "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\"", "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": 21, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "CommandName": "Add-PnPContentType", - "Id": 22 + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "Id": 22, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPContentType -Name \"Project Item\"", "CommandName": "Add-PnPContentType", - "Id": 23 + "Command": "Add-PnPContentType -Name \"Project Item\"", + "Id": 23, + "Rank": 4 }, { - "Rank": 5, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "CommandName": "Add-PnPContentType", - "Id": 24 + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "Id": 24, + "Rank": 5 }, { - "Rank": 1, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25 + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Id": 25, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 26 + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Id": 26, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 27 + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 27, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28 + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 28, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "CommandName": "Add-PnPContentTypeToList", - "Id": 29 + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Id": 29, + "Rank": 1 }, { - "Rank": 1, - "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`\"}\"", "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": 30, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 31 + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Id": 31, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32 + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity", + "Id": 32, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "CommandName": "Add-PnPDocumentSet", - "Id": 33 + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Id": 33, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "CommandName": "Add-PnPEventReceiver", - "Id": 34 + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "Id": 34, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "CommandName": "Add-PnPEventReceiver", - "Id": 35 + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", + "Id": 35, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "CommandName": "Add-PnPEventReceiver", - "Id": 36 + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", + "Id": 36, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "CommandName": "Add-PnPEventReceiver", - "Id": 37 + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "Id": 37, + "Rank": 4 }, { - "Rank": 1, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "CommandName": "Add-PnPField", - "Id": 38 + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Id": 38, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", "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": 39, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"", "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": 40, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "CommandName": "Add-PnPField", - "Id": 41 + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Id": 41, + "Rank": 4 }, { - "Rank": 5, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "CommandName": "Add-PnPField", - "Id": 42 + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", + "Id": 42, + "Rank": 5 }, { - "Rank": 6, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "CommandName": "Add-PnPField", - "Id": 43 + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "Id": 43, + "Rank": 6 }, { - "Rank": 1, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Add-PnPFieldToContentType", - "Id": 44 + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 44, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "CommandName": "Add-PnPFile", - "Id": 45 + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Id": 45, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "CommandName": "Add-PnPFile", - "Id": 46 + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Id": 46, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", "CommandName": "Add-PnPFile", - "Id": 47 + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", + "Id": 47, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", "CommandName": "Add-PnPFile", - "Id": 48 + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", + "Id": 48, + "Rank": 4 }, { - "Rank": 5, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", "CommandName": "Add-PnPFile", - "Id": 49 + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", + "Id": 49, + "Rank": 5 }, { - "Rank": 6, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", "CommandName": "Add-PnPFile", - "Id": 50 + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", + "Id": 50, + "Rank": 6 }, { - "Rank": 7, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "CommandName": "Add-PnPFile", - "Id": 51 + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Id": 51, + "Rank": 7 }, { - "Rank": 8, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPFile", - "Id": 52 + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Id": 52, + "Rank": 8 }, { - "Rank": 1, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 53 + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 53, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 54 + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", + "Id": 54, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 55 + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "Id": 55, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 56 + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 56, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 57 + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Id": 57, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFileSharingInvite", - "Id": 58 + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Id": 58, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "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": 59, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "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": 60, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 61 + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Id": 61, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 62 + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", + "Id": 62, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 63 + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "Id": 63, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 64 + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "Id": 64, + "Rank": 4 }, { - "Rank": 5, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 65 + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Id": 65, + "Rank": 5 }, { - "Rank": 1, - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "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": 66, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "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": 67, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", "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": 68, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView", "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": 69, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare", "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": 70, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", "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": 71, + "Rank": 4 }, { - "Rank": 1, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Add-PnPFolder", - "Id": 72 + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 72, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "CommandName": "Add-PnPFolder", - "Id": 73 + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Id": 73, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "CommandName": "Add-PnPFolder", - "Id": 74 + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Id": 74, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 75 + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 75, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 76 + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "Id": 76, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 77 + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "Id": 77, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 78 + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 78, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 79 + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Id": 79, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFolderSharingInvite", - "Id": 80 + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Id": 80, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "CommandName": "Add-PnPFolderSharingInvite", - "Id": 81 + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "Id": 81, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "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": 82, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPFolderUserSharingLink", - "Id": 83 + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 83, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "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": 84, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Add-PnPGroupMember", - "Id": 85 + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 85, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "CommandName": "Add-PnPGroupMember", - "Id": 86 + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Id": 86, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Id": 87 + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 87, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "CommandName": "Add-PnPHubSiteAssociation", - "Id": 88 + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "Id": 88, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "CommandName": "Add-PnPHubToHubAssociation", - "Id": 89 + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "Id": 89, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "CommandName": "Add-PnPHubToHubAssociation", - "Id": 90 + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "Id": 90, + "Rank": 2 }, { - "Rank": 3, - "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\"", "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": 91, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92 + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site", + "Id": 92, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'", "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93 + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'", + "Id": 93, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptLink", - "Id": 94 + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", + "Id": 94, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "CommandName": "Add-PnPJavaScriptLink", - "Id": 95 + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Id": 95, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "CommandName": "Add-PnPListDesign", - "Id": 96 + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "Id": 96, + "Rank": 1 }, { - "Rank": 2, - "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\"", "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": 97, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 98 + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Id": 98, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 99 + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Id": 99, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 100 + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Id": 100, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Id": 101 + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 101, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Id": 102 + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 102, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "CommandName": "Add-PnPListItem", - "Id": 103 + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "Id": 103, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "CommandName": "Add-PnPListItem", - "Id": 104 + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "Id": 104, + "Rank": 4 }, { - "Rank": 5, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "CommandName": "Add-PnPListItem", - "Id": 105 + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Id": 105, + "Rank": 5 }, { - "Rank": 1, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "CommandName": "Add-PnPListItemAttachment", - "Id": 106 + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "Id": 106, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPListItemAttachment", - "Id": 107 + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "Id": 107, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "CommandName": "Add-PnPListItemAttachment", - "Id": 108 + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Id": 108, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "CommandName": "Add-PnPListItemComment", - "Id": 109 + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Id": 109, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "CommandName": "Add-PnPMasterPage", - "Id": 110 + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Id": 110, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 111 + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 111, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 112 + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 112, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 113 + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 113, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 114 + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 114, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 115 + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "Id": 115, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 116 + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Id": 116, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 117 + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Id": 117, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "CommandName": "Add-PnPNavigationNode", - "Id": 118 + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Id": 118, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "CommandName": "Add-PnPNavigationNode", - "Id": 119 + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "Id": 119, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "CommandName": "Add-PnPNavigationNode", - "Id": 120 + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "Id": 120, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "CommandName": "Add-PnPNavigationNode", - "Id": 121 + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "Id": 121, + "Rank": 4 }, { - "Rank": 5, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "CommandName": "Add-PnPNavigationNode", - "Id": 122 + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Id": 122, + "Rank": 5 }, { - "Rank": 6, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "CommandName": "Add-PnPNavigationNode", - "Id": 123 + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Id": 123, + "Rank": 6 }, { - "Rank": 7, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "CommandName": "Add-PnPNavigationNode", - "Id": 124 + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Id": 124, + "Rank": 7 }, { - "Rank": 8, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "CommandName": "Add-PnPNavigationNode", - "Id": 125 + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "Id": 125, + "Rank": 8 }, { - "Rank": 1, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 126 + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "Id": 126, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", "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": 127, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 128 + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Id": 128, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "CommandName": "Add-PnPOrgNewsSite", - "Id": 129 + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Id": 129, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPPage -Name \"NewPage\"", "CommandName": "Add-PnPPage", - "Id": 130 + "Command": "Add-PnPPage -Name \"NewPage\"", + "Id": 130, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "CommandName": "Add-PnPPage", - "Id": 131 + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Id": 131, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "CommandName": "Add-PnPPage", - "Id": 132 + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Id": 132, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "CommandName": "Add-PnPPage", - "Id": 133 + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Id": 133, + "Rank": 4 }, { - "Rank": 5, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "CommandName": "Add-PnPPage", - "Id": 134 + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Id": 134, + "Rank": 5 }, { - "Rank": 6, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "CommandName": "Add-PnPPage", - "Id": 135 + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Id": 135, + "Rank": 6 }, { - "Rank": 7, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Add-PnPPage", - "Id": 136 + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 136, + "Rank": 7 }, { - "Rank": 8, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "CommandName": "Add-PnPPage", - "Id": 137 + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Id": 137, + "Rank": 8 }, { - "Rank": 9, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Add-PnPPage", - "Id": 138 + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 138, + "Rank": 9 }, { - "Rank": 10, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Add-PnPPage", - "Id": 139 + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 139, + "Rank": 10 }, { - "Rank": 1, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "CommandName": "Add-PnPPageImageWebPart", - "Id": 140 + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "Id": 140, + "Rank": 1 }, { - "Rank": 2, - "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\"", "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": 141, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "CommandName": "Add-PnPPageSection", - "Id": 142 + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Id": 142, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "CommandName": "Add-PnPPageSection", - "Id": 143 + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Id": 143, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "CommandName": "Add-PnPPageTextPart", - "Id": 144 + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Id": 144, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Add-PnPPageTextPart", - "Id": 145 + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "Id": 145, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "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": 146, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "CommandName": "Add-PnPPageWebPart", - "Id": 147 + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Id": 147, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "CommandName": "Add-PnPPageWebPart", - "Id": 148 + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Id": 148, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "CommandName": "Add-PnPPageWebPart", - "Id": 149 + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Id": 149, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Id": 150 + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Id": 150, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Id": 151 + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Id": 151, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPPlannerRoster", "CommandName": "Add-PnPPlannerRoster", - "Id": 152 + "Command": "Add-PnPPlannerRoster", + "Id": 152, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPPlannerRosterMember", - "Id": 153 + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 153, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Id": 154 + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 154, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Id": 155 + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 155, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "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": 156, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Add-PnPPublishingImageRendition", - "Id": 157 + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 157, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "CommandName": "Add-PnPPublishingPage", - "Id": 158 + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "Id": 158, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "CommandName": "Add-PnPPublishingPage", - "Id": 159 + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Id": 159, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "CommandName": "Add-PnPPublishingPageLayout", - "Id": 160 + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 160, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "CommandName": "Add-PnPRoleDefinition", - "Id": 161 + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Id": 161, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "CommandName": "Add-PnPRoleDefinition", - "Id": 162 + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Id": 162, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "CommandName": "Add-PnPRoleDefinition", - "Id": 163 + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Id": 163, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 164 + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 164, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 165 + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 165, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166 + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Id": 166, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPSiteCollectionAppCatalog", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167 + "Command": "Add-PnPSiteCollectionAppCatalog", + "Id": 167, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 168 + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 168, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite", "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": 169, + "Rank": 1 }, { - "Rank": 2, - "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", "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": 170, + "Rank": 2 }, { - "Rank": 3, - "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\"", "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": 171, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 172 + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "Id": 172, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "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": 173, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png", "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": 174, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Add-PnPSiteDesignTask", - "Id": 175 + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 175, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Add-PnPSiteDesignTask", - "Id": 176 + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Id": 176, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "CommandName": "Add-PnPSiteScript", - "Id": 177 + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Id": 177, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "CommandName": "Add-PnPSiteScriptPackage", - "Id": 178 + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "Id": 178, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "CommandName": "Add-PnPSiteTemplate", - "Id": 179 + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Id": 179, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "CommandName": "Add-PnPStoredCredential", - "Id": 180 + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "Id": 180, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "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": 181, + "Rank": 2 }, { - "Rank": 3, - "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\"", "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": 182, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "CommandName": "Add-PnPTaxonomyField", - "Id": 183 + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Id": 183, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "CommandName": "Add-PnPTaxonomyField", - "Id": 184 + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Id": 184, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "CommandName": "Add-PnPTeamsChannel", - "Id": 185 + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Id": 185, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "CommandName": "Add-PnPTeamsChannel", - "Id": 186 + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Id": 186, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Id": 187 + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "Id": 187, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Id": 188 + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "Id": 188, + "Rank": 4 }, { - "Rank": 1, - "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", "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": 189, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "CommandName": "Add-PnpTeamsChannelUser", - "Id": 190 + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "Id": 190, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", "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": 191, + "Rank": 1 }, { - "Rank": 2, - "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\"", "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": 192, + "Rank": 2 }, { - "Rank": 3, - "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\"", "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": 193, + "Rank": 3 }, { - "Rank": 4, - "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", "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": 194, + "Rank": 4 }, { - "Rank": 1, - "Command": "Add-PnPTeamsTeam", "CommandName": "Add-PnPTeamsTeam", - "Id": 195 + "Command": "Add-PnPTeamsTeam", + "Id": 195, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Add-PnPTeamsUser", - "Id": 196 + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 196, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Add-PnPTeamsUser", - "Id": 197 + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 197, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "CommandName": "Add-PnPTeamsUser", - "Id": 198 + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "Id": 198, + "Rank": 3 }, { - "Rank": 4, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "CommandName": "Add-PnPTeamsUser", - "Id": 199 + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Id": 199, + "Rank": 4 }, { - "Rank": 1, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Add-PnPTenantCdnOrigin", - "Id": 200 + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 200, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "CommandName": "Add-PnPTenantSequence", - "Id": 201 + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Id": 201, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202 + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Id": 202, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 203 + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Id": 203, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "CommandName": "Add-PnPTermToTerm", - "Id": 204 + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Id": 204, + "Rank": 1 }, { - "Rank": 1, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "CommandName": "Add-PnPView", - "Id": 205 + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "Id": 205, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "CommandName": "Add-PnPView", - "Id": 206 + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "Id": 206, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", "CommandName": "Add-PnPView", - "Id": 207 + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", + "Id": 207, + "Rank": 3 }, { - "Rank": 1, - "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\"", "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": 208, + "Rank": 1 }, { - "Rank": 2, - "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\"", "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": 209, + "Rank": 2 }, { - "Rank": 3, - "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\"", "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": 210, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Add-PnPWebhookSubscription", - "Id": 211 + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 211, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "CommandName": "Add-PnPWebhookSubscription", - "Id": 212 + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Id": 212, + "Rank": 2 }, { - "Rank": 3, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "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": 213, + "Rank": 3 }, { - "Rank": 1, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 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": 214, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 215 + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "Id": 215, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 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": 216, + "Rank": 1 }, { - "Rank": 2, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 217 + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "Id": 217, + "Rank": 2 }, { - "Rank": 1, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "CommandName": "Add-PnPWikiPage", - "Id": 218 + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Id": 218, + "Rank": 1 }, { - "Rank": 1, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219 + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Id": 219, + "Rank": 1 }, { - "Rank": 1, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220 + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Id": 220, + "Rank": 1 }, { - "Rank": 1, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 221 + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Id": 221, + "Rank": 1 }, { - "Rank": 2, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 222 + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Id": 222, + "Rank": 2 }, { - "Rank": 1, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223 + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 223, + "Rank": 1 }, { - "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224 + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Id": 224, + "Rank": 1 }, { - "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225 + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Id": 225, + "Rank": 1 }, { - "Rank": 1, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 226 + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 226, + "Rank": 1 }, { - "Rank": 2, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227 + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Id": 227, + "Rank": 2 }, { - "Rank": 3, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228 + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Id": 228, + "Rank": 3 }, { - "Rank": 1, - "Command": "Clear-PnPTenantAppCatalogUrl", "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229 + "Command": "Clear-PnPTenantAppCatalogUrl", + "Id": 229, + "Rank": 1 }, { - "Rank": 1, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 230 + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 230, + "Rank": 1 }, { - "Rank": 2, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 231 + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 231, + "Rank": 2 }, { - "Rank": 1, - "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", "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": 232, + "Rank": 1 }, { - "Rank": 1, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", "CommandName": "Convert-PnPFile", - "Id": 233 + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", + "Id": 233, + "Rank": 1 }, { - "Rank": 2, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", "CommandName": "Convert-PnPFile", - "Id": 234 + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", + "Id": 234, + "Rank": 2 }, { - "Rank": 3, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", "CommandName": "Convert-PnPFile", - "Id": 235 + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", + "Id": 235, + "Rank": 3 }, { - "Rank": 4, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", "CommandName": "Convert-PnPFile", - "Id": 236 + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", + "Id": 236, + "Rank": 4 }, { - "Rank": 5, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", "CommandName": "Convert-PnPFile", - "Id": 237 + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", + "Id": 237, + "Rank": 5 }, { - "Rank": 6, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", "CommandName": "Convert-PnPFile", - "Id": 238 + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", + "Id": 238, + "Rank": 6 }, { - "Rank": 1, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 239 + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Id": 239, + "Rank": 1 }, { - "Rank": 2, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 240 + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Id": 240, + "Rank": 2 }, { - "Rank": 1, - "Command": "Convert-PnPSiteTemplate -Path template.xml", "CommandName": "Convert-PnPSiteTemplate", - "Id": 241 + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Id": 241, + "Rank": 1 }, { - "Rank": 2, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "CommandName": "Convert-PnPSiteTemplate", - "Id": 242 + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Id": 242, + "Rank": 2 }, { - "Rank": 3, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "CommandName": "Convert-PnPSiteTemplate", - "Id": 243 + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Id": 243, + "Rank": 3 }, { - "Rank": 1, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 244 + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Id": 244, + "Rank": 1 }, { - "Rank": 2, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 245 + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Id": 245, + "Rank": 2 }, { - "Rank": 1, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 246 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Id": 246, + "Rank": 1 }, { - "Rank": 2, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "CommandName": "ConvertTo-PnPPage", - "Id": 247 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Id": 247, + "Rank": 2 }, { - "Rank": 3, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "CommandName": "ConvertTo-PnPPage", - "Id": 248 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Id": 248, + "Rank": 3 }, { - "Rank": 4, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "CommandName": "ConvertTo-PnPPage", - "Id": 249 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Id": 249, + "Rank": 4 }, { - "Rank": 5, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 250 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 250, + "Rank": 5 }, { - "Rank": 6, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "CommandName": "ConvertTo-PnPPage", - "Id": 251 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Id": 251, + "Rank": 6 }, { - "Rank": 7, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 252 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Id": 252, + "Rank": 7 }, { - "Rank": 8, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 253 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite", + "Id": 253, + "Rank": 8 }, { - "Rank": 9, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 254 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 254, + "Rank": 9 }, { - "Rank": 10, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 255 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Id": 255, + "Rank": 10 }, { - "Rank": 11, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "CommandName": "ConvertTo-PnPPage", - "Id": 256 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Id": 256, + "Rank": 11 }, { - "Rank": 12, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 257 + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 257, + "Rank": 12 }, { - "Rank": 13, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 258 + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 258, + "Rank": 13 }, { - "Rank": 14, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "CommandName": "ConvertTo-PnPPage", - "Id": 259 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Id": 259, + "Rank": 14 }, { - "Rank": 1, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 260 + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 260, + "Rank": 1 }, { - "Rank": 2, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Id": 261 + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 261, + "Rank": 2 }, { - "Rank": 3, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFile", - "Id": 262 + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 262, + "Rank": 3 }, { - "Rank": 4, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 263 + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 263, + "Rank": 4 }, { - "Rank": 5, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFile", - "Id": 264 + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 264, + "Rank": 5 }, { - "Rank": 6, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFile", - "Id": 265 + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 265, + "Rank": 6 }, { - "Rank": 7, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Id": 266 + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 266, + "Rank": 7 }, { - "Rank": 8, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 267 + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 267, + "Rank": 8 }, { - "Rank": 9, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 268 + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 268, + "Rank": 9 }, { - "Rank": 10, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFile", - "Id": 269 + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 269, + "Rank": 10 }, { - "Rank": 1, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 270 + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 270, + "Rank": 1 }, { - "Rank": 2, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 271 + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 271, + "Rank": 2 }, { - "Rank": 3, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFolder", - "Id": 272 + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 272, + "Rank": 3 }, { - "Rank": 4, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 273 + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 273, + "Rank": 4 }, { - "Rank": 5, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFolder", - "Id": 274 + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 274, + "Rank": 5 }, { - "Rank": 6, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFolder", - "Id": 275 + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 275, + "Rank": 6 }, { - "Rank": 7, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 276 + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 276, + "Rank": 7 }, { - "Rank": 8, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 277 + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 277, + "Rank": 8 }, { - "Rank": 9, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 278 + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 278, + "Rank": 9 }, { - "Rank": 10, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 279 + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 279, + "Rank": 10 }, { - "Rank": 1, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "CommandName": "Copy-PnPItemProxy", - "Id": 280 + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Id": 280, + "Rank": 1 }, { - "Rank": 1, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "CommandName": "Copy-PnPList", - "Id": 281 + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Id": 281, + "Rank": 1 }, { - "Rank": 2, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "CommandName": "Copy-PnPList", - "Id": 282 + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "Id": 282, + "Rank": 2 }, { - "Rank": 3, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "CommandName": "Copy-PnPList", - "Id": 283 + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Id": 283, + "Rank": 3 }, { - "Rank": 4, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "CommandName": "Copy-PnPList", - "Id": 284 + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", + "Id": 284, + "Rank": 4 }, { - "Rank": 1, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "CommandName": "Copy-PnPTeamsTeam", - "Id": 285 + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "Id": 285, + "Rank": 1 }, { - "Rank": 2, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "CommandName": "Copy-PnPTeamsTeam", - "Id": 286 + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "Id": 286, + "Rank": 2 }, { - "Rank": 3, - "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", "CommandName": "Copy-PnPTeamsTeam", - "Id": 287 + "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": 287, + "Rank": 3 }, { - "Rank": 4, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "CommandName": "Copy-PnPTeamsTeam", - "Id": 288 + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Id": 288, + "Rank": 4 }, { - "Rank": 1, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Disable-PnPFeature", - "Id": 289 + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 289, + "Rank": 1 }, { - "Rank": 2, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Disable-PnPFeature", - "Id": 290 + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 290, + "Rank": 2 }, { - "Rank": 3, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Disable-PnPFeature", - "Id": 291 + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 291, + "Rank": 3 }, { - "Rank": 1, - "Command": "Disable-PnPPageScheduling", "CommandName": "Disable-PnPPageScheduling", - "Id": 292 + "Command": "Disable-PnPPageScheduling", + "Id": 292, + "Rank": 1 }, { - "Rank": 1, - "Command": "Disable-PnPPowerShellTelemetry", "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 293 + "Command": "Disable-PnPPowerShellTelemetry", + "Id": 293, + "Rank": 1 }, { - "Rank": 2, - "Command": "Disable-PnPPowerShellTelemetry -Force", "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 294 + "Command": "Disable-PnPPowerShellTelemetry -Force", + "Id": 294, + "Rank": 2 }, { - "Rank": 1, - "Command": "Disable-PnPSharingForNonOwnersOfSite", "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 295 + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 295, + "Rank": 1 }, { - "Rank": 1, - "Command": "Disable-PnPSiteClassification", "CommandName": "Disable-PnPSiteClassification", - "Id": 296 + "Command": "Disable-PnPSiteClassification", + "Id": 296, + "Rank": 1 }, { - "Rank": 1, - "Command": "Disconnect-PnPOnline", "CommandName": "Disconnect-PnPOnline", - "Id": 297 + "Command": "Disconnect-PnPOnline", + "Id": 297, + "Rank": 1 }, { - "Rank": 1, - "Command": "Enable-PnPCommSite", "CommandName": "Enable-PnPCommSite", - "Id": 298 + "Command": "Enable-PnPCommSite", + "Id": 298, + "Rank": 1 }, { - "Rank": 2, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "CommandName": "Enable-PnPCommSite", - "Id": 299 + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Id": 299, + "Rank": 2 }, { - "Rank": 1, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Enable-PnPFeature", - "Id": 300 + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 300, + "Rank": 1 }, { - "Rank": 2, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Enable-PnPFeature", - "Id": 301 + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 301, + "Rank": 2 }, { - "Rank": 3, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Enable-PnPFeature", - "Id": 302 + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 302, + "Rank": 3 }, { - "Rank": 1, - "Command": "Enable-PnPPageScheduling", "CommandName": "Enable-PnPPageScheduling", - "Id": 303 + "Command": "Enable-PnPPageScheduling", + "Id": 303, + "Rank": 1 }, { - "Rank": 1, - "Command": "Enable-PnPPowerShellTelemetry", "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 304 + "Command": "Enable-PnPPowerShellTelemetry", + "Id": 304, + "Rank": 1 }, { - "Rank": 2, - "Command": "Enable-PnPPowerShellTelemetry -Force", "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 305 + "Command": "Enable-PnPPowerShellTelemetry -Force", + "Id": 305, + "Rank": 2 }, { - "Rank": 1, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "CommandName": "Enable-PnPSiteClassification", - "Id": 306 + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Id": 306, + "Rank": 1 }, { - "Rank": 2, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Enable-PnPSiteClassification", - "Id": 307 + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 307, + "Rank": 2 }, { - "Rank": 1, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "CommandName": "Export-PnPListToSiteTemplate", - "Id": 308 + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Id": 308, + "Rank": 1 }, { - "Rank": 2, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "CommandName": "Export-PnPListToSiteTemplate", - "Id": 309 + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Id": 309, + "Rank": 2 }, { - "Rank": 1, - "Command": "Export-PnPPage -Identity Home.aspx", "CommandName": "Export-PnPPage", - "Id": 310 + "Command": "Export-PnPPage -Identity Home.aspx", + "Id": 310, + "Rank": 1 }, { - "Rank": 1, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 311 + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Id": 311, + "Rank": 1 }, { - "Rank": 2, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 312 + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Id": 312, + "Rank": 2 }, { - "Rank": 3, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 313 + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Id": 313, + "Rank": 3 }, { - "Rank": 1, - "Command": "Export-PnPTaxonomy", "CommandName": "Export-PnPTaxonomy", - "Id": 314 + "Command": "Export-PnPTaxonomy", + "Id": 314, + "Rank": 1 }, { - "Rank": 2, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "CommandName": "Export-PnPTaxonomy", - "Id": 315 + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Id": 315, + "Rank": 2 }, { - "Rank": 3, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "CommandName": "Export-PnPTaxonomy", - "Id": 316 + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "Id": 316, + "Rank": 3 }, { - "Rank": 4, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "CommandName": "Export-PnPTaxonomy", - "Id": 317 + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Id": 317, + "Rank": 4 }, { - "Rank": 1, - "Command": "Export-PnPTermGroupToXml", "CommandName": "Export-PnPTermGroupToXml", - "Id": 318 + "Command": "Export-PnPTermGroupToXml", + "Id": 318, + "Rank": 1 }, { - "Rank": 2, - "Command": "Export-PnPTermGroupToXml -Out output.xml", "CommandName": "Export-PnPTermGroupToXml", - "Id": 319 + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Id": 319, + "Rank": 2 }, { - "Rank": 3, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "CommandName": "Export-PnPTermGroupToXml", - "Id": 320 + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Id": 320, + "Rank": 3 }, { - "Rank": 1, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Export-PnPUserInfo", - "Id": 321 + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Id": 321, + "Rank": 1 }, { - "Rank": 2, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "CommandName": "Export-PnPUserInfo", - "Id": 322 + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 322, + "Rank": 2 }, { - "Rank": 1, - "Command": "Export-PnPUserProfile -LoginName user@domain.com", "CommandName": "Export-PnPUserProfile", - "Id": 323 + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Id": 323, + "Rank": 1 }, { - "Rank": 2, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "CommandName": "Export-PnPUserProfile", - "Id": 324 + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 324, + "Rank": 2 }, { - "Rank": 1, - "Command": "Find-PnPFile -Match *.master", "CommandName": "Find-PnPFile", - "Id": 325 + "Command": "Find-PnPFile -Match *.master", + "Id": 325, + "Rank": 1 }, { - "Rank": 2, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "CommandName": "Find-PnPFile", - "Id": 326 + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Id": 326, + "Rank": 2 }, { - "Rank": 3, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "CommandName": "Find-PnPFile", - "Id": 327 + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Id": 327, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPAccessToken", "CommandName": "Get-PnPAccessToken", - "Id": 328 + "Command": "Get-PnPAccessToken", + "Id": 328, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAccessToken -Decoded", "CommandName": "Get-PnPAccessToken", - "Id": 329 + "Command": "Get-PnPAccessToken -Decoded", + "Id": 329, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "CommandName": "Get-PnPAccessToken", - "Id": 330 + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Id": 330, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "CommandName": "Get-PnPAccessToken", - "Id": 331 + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Id": 331, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "CommandName": "Get-PnPAccessToken", - "Id": 332 + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Id": 332, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPAlert", "CommandName": "Get-PnPAlert", - "Id": 333 + "Command": "Get-PnPAlert", + "Id": 333, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAlert -List \"Demo List\"", "CommandName": "Get-PnPAlert", - "Id": 334 + "Command": "Get-PnPAlert -List \"Demo List\"", + "Id": 334, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPAlert", - "Id": 335 + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 335, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPAlert -Title \"Demo Alert\"", "CommandName": "Get-PnPAlert", - "Id": 336 + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Id": 336, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPAlert -AllUsers", "CommandName": "Get-PnPAlert", - "Id": 337 + "Command": "Get-PnPAlert -AllUsers", + "Id": 337, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "CommandName": "Get-PnPAlert", - "Id": 338 + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Id": 338, + "Rank": 6 }, { - "Rank": 1, - "Command": "Get-PnPApp", "CommandName": "Get-PnPApp", - "Id": 339 + "Command": "Get-PnPApp", + "Id": 339, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPApp -Scope Site", "CommandName": "Get-PnPApp", - "Id": 340 + "Command": "Get-PnPApp -Scope Site", + "Id": 340, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPApp", - "Id": 341 + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 341, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "CommandName": "Get-PnPAppErrors", - "Id": 342 + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Id": 342, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "CommandName": "Get-PnPAppErrors", - "Id": 343 + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Id": 343, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "CommandName": "Get-PnPAppInfo", - "Id": 344 + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Id": 344, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPAppInfo", - "Id": 345 + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 345, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "CommandName": "Get-PnPAppInfo", - "Id": 346 + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Id": 346, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPApplicationCustomizer", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 347 + "Command": "Get-PnPApplicationCustomizer", + "Id": 347, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 348 + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 348, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 349 + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Id": 349, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPAuditing", "CommandName": "Get-PnPAuditing", - "Id": 350 + "Command": "Get-PnPAuditing", + "Id": 350, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPAuthenticationRealm", "CommandName": "Get-PnPAuthenticationRealm", - "Id": 351 + "Command": "Get-PnPAuthenticationRealm", + "Id": 351, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "CommandName": "Get-PnPAuthenticationRealm", - "Id": 352 + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Id": 352, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPAvailableLanguage", "CommandName": "Get-PnPAvailableLanguage", - "Id": 353 + "Command": "Get-PnPAvailableLanguage", + "Id": 353, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPAvailableSensitivityLabel", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 354 + "Command": "Get-PnPAvailableSensitivityLabel", + "Id": 354, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 355 + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Id": 355, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 356 + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Id": 356, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPAvailableSiteClassification", "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 357 + "Command": "Get-PnPAvailableSiteClassification", + "Id": 357, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPAzureACSPrincipal", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 358 + "Command": "Get-PnPAzureACSPrincipal", + "Id": 358, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 359 + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Id": 359, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 360 + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Id": 360, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 361 + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Id": 361, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 362 + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 362, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 363 + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Id": 363, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 364 + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Id": 364, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPAzureADActivityReportSignIn", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 365 + "Command": "Get-PnPAzureADActivityReportSignIn", + "Id": 365, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 366 + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Id": 366, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 367 + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Id": 367, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPAzureADApp", "CommandName": "Get-PnPAzureADApp", - "Id": 368 + "Command": "Get-PnPAzureADApp", + "Id": 368, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADApp -Identity MyApp", "CommandName": "Get-PnPAzureADApp", - "Id": 369 + "Command": "Get-PnPAzureADApp -Identity MyApp", + "Id": 369, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADApp", - "Id": 370 + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 370, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADApp", - "Id": 371 + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Id": 371, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPAzureADAppPermission", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 372 + "Command": "Get-PnPAzureADAppPermission", + "Id": 372, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 373 + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Id": 373, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 374 + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 374, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPAzureADAppSitePermission", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 375 + "Command": "Get-PnPAzureADAppSitePermission", + "Id": 375, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 376 + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Id": 376, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 377 + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Id": 377, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 378 + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Id": 378, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 379 + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Id": 379, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPAzureADGroup", "CommandName": "Get-PnPAzureADGroup", - "Id": 380 + "Command": "Get-PnPAzureADGroup", + "Id": 380, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADGroup -Identity $groupId", "CommandName": "Get-PnPAzureADGroup", - "Id": 381 + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Id": 381, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "CommandName": "Get-PnPAzureADGroup", - "Id": 382 + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Id": 382, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "CommandName": "Get-PnPAzureADGroup", - "Id": 383 + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Id": 383, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPAzureADGroup -Identity $group", "CommandName": "Get-PnPAzureADGroup", - "Id": 384 + "Command": "Get-PnPAzureADGroup -Identity $group", + "Id": 384, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "CommandName": "Get-PnPAzureADGroupMember", - "Id": 385 + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Id": 385, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADGroupMember -Identity $group", "CommandName": "Get-PnPAzureADGroupMember", - "Id": 386 + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Id": 386, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 387 + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Id": 387, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADGroupOwner -Identity $group", "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 388 + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Id": 388, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipal", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 389 + "Command": "Get-PnPAzureADServicePrincipal", + "Id": 389, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 390 + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Id": 390, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 391 + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Id": 391, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 392 + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Id": 392, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 393 + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Id": 393, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 394 + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 394, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 395 + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 395, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 396 + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 396, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 397 + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Id": 397, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPAzureADUser", "CommandName": "Get-PnPAzureADUser", - "Id": 398 + "Command": "Get-PnPAzureADUser", + "Id": 398, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureADUser -EndIndex 50", "CommandName": "Get-PnPAzureADUser", - "Id": 399 + "Command": "Get-PnPAzureADUser -EndIndex 50", + "Id": 399, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPAzureADUser", - "Id": 400 + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 400, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "CommandName": "Get-PnPAzureADUser", - "Id": 401 + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Id": 401, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "CommandName": "Get-PnPAzureADUser", - "Id": 402 + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Id": 402, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "CommandName": "Get-PnPAzureADUser", - "Id": 403 + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Id": 403, + "Rank": 6 }, { - "Rank": 7, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "CommandName": "Get-PnPAzureADUser", - "Id": 404 + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Id": 404, + "Rank": 7 }, { - "Rank": 8, - "Command": "Get-PnPAzureADUser -Delta", "CommandName": "Get-PnPAzureADUser", - "Id": 405 + "Command": "Get-PnPAzureADUser -Delta", + "Id": 405, + "Rank": 8 }, { - "Rank": 9, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "CommandName": "Get-PnPAzureADUser", - "Id": 406 + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Id": 406, + "Rank": 9 }, { - "Rank": 10, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "CommandName": "Get-PnPAzureADUser", - "Id": 407 + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Id": 407, + "Rank": 10 }, { - "Rank": 1, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "CommandName": "Get-PnPAzureCertificate", - "Id": 408 + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Id": 408, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "CommandName": "Get-PnPAzureCertificate", - "Id": 409 + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Id": 409, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "CommandName": "Get-PnPAzureCertificate", - "Id": 410 + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Id": 410, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPBrowserIdleSignout", "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 411 + "Command": "Get-PnPBrowserIdleSignout", + "Id": 411, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 412 + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Id": 412, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPBuiltInDesignPackageVisibility", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 413 + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 413, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPBuiltInSiteTemplateSettings", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 414 + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 414, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 415 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Id": 415, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 416 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Id": 416, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 417 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Id": 417, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 418 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Id": 418, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPChangeLog", "CommandName": "Get-PnPChangeLog", - "Id": 419 + "Command": "Get-PnPChangeLog", + "Id": 419, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPChangeLog -Nightly", "CommandName": "Get-PnPChangeLog", - "Id": 420 + "Command": "Get-PnPChangeLog -Nightly", + "Id": 420, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 421 + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Id": 421, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 422 + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Id": 422, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", "CommandName": "Get-PnPContainer", - "Id": 423 + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", + "Id": 423, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "CommandName": "Get-PnPContainer", - "Id": 424 + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "Id": 424, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", "CommandName": "Get-PnPContainer", - "Id": 425 + "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", + "Id": 425, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", "CommandName": "Get-PnPContainerTypeConfiguration", - "Id": 426 + "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", + "Id": 426, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPContentType", "CommandName": "Get-PnPContentType", - "Id": 427 + "Command": "Get-PnPContentType", + "Id": 427, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPContentType -InSiteHierarchy", "CommandName": "Get-PnPContentType", - "Id": 428 + "Command": "Get-PnPContentType -InSiteHierarchy", + "Id": 428, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPContentType -Identity \"Project Document\"", "CommandName": "Get-PnPContentType", - "Id": 429 + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Id": 429, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPContentType -List \"Documents\"", "CommandName": "Get-PnPContentType", - "Id": 430 + "Command": "Get-PnPContentType -List \"Documents\"", + "Id": 430, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "CommandName": "Get-PnPContentType", - "Id": 431 + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "Id": 431, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 432 + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Id": 432, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPCustomAction", "CommandName": "Get-PnPCustomAction", - "Id": 433 + "Command": "Get-PnPCustomAction", + "Id": 433, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPCustomAction", - "Id": 434 + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 434, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPCustomAction -Scope web", "CommandName": "Get-PnPCustomAction", - "Id": 435 + "Command": "Get-PnPCustomAction -Scope web", + "Id": 435, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPDeletedContainer", "CommandName": "Get-PnPDeletedContainer", - "Id": 436 + "Command": "Get-PnPDeletedContainer", + "Id": 436, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPDeletedMicrosoft365Group", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 437 + "Command": "Get-PnPDeletedMicrosoft365Group", + "Id": 437, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 438 + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 438, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPDeletedTeam", "CommandName": "Get-PnPDeletedTeam", - "Id": 439 + "Command": "Get-PnPDeletedTeam", + "Id": 439, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPDiagnostics", "CommandName": "Get-PnPDiagnostics", - "Id": 440 + "Command": "Get-PnPDiagnostics", + "Id": 440, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPDisableSpacesActivation", "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 441 + "Command": "Get-PnPDisableSpacesActivation", + "Id": 441, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 442 + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Id": 442, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 443 + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Id": 443, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPEventReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 444 + "Command": "Get-PnPEventReceiver", + "Id": 444, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Id": 445 + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 445, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPEventReceiver -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 446 + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Id": 446, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "CommandName": "Get-PnPEventReceiver", - "Id": 447 + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Id": 447, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Id": 448 + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 448, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 449 + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Id": 449, + "Rank": 6 }, { - "Rank": 7, - "Command": "Get-PnPEventReceiver -Scope Site", "CommandName": "Get-PnPEventReceiver", - "Id": 450 + "Command": "Get-PnPEventReceiver -Scope Site", + "Id": 450, + "Rank": 7 }, { - "Rank": 8, - "Command": "Get-PnPEventReceiver -Scope Web", "CommandName": "Get-PnPEventReceiver", - "Id": 451 + "Command": "Get-PnPEventReceiver -Scope Web", + "Id": 451, + "Rank": 8 }, { - "Rank": 9, - "Command": "Get-PnPEventReceiver -Scope All", "CommandName": "Get-PnPEventReceiver", - "Id": 452 + "Command": "Get-PnPEventReceiver -Scope All", + "Id": 452, + "Rank": 9 }, { - "Rank": 1, - "Command": "Get-PnPException", "CommandName": "Get-PnPException", - "Id": 453 + "Command": "Get-PnPException", + "Id": 453, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPException -All", "CommandName": "Get-PnPException", - "Id": 454 + "Command": "Get-PnPException -All", + "Id": 454, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Id": 455 + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Id": 455, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Id": 456 + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Id": 456, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPFeature", "CommandName": "Get-PnPFeature", - "Id": 457 + "Command": "Get-PnPFeature", + "Id": 457, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPFeature -Scope Site", "CommandName": "Get-PnPFeature", - "Id": 458 + "Command": "Get-PnPFeature -Scope Site", + "Id": 458, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPFeature", - "Id": 459 + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 459, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "CommandName": "Get-PnPFeature", - "Id": 460 + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Id": 460, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPField", "CommandName": "Get-PnPField", - "Id": 461 + "Command": "Get-PnPField", + "Id": 461, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Get-PnPField", - "Id": 462 + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 462, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPField -Group \"Custom Columns\"", "CommandName": "Get-PnPField", - "Id": 463 + "Command": "Get-PnPField -Group \"Custom Columns\"", + "Id": 463, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "CommandName": "Get-PnPFile", - "Id": 464 + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "Id": 464, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "CommandName": "Get-PnPFile", - "Id": 465 + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "Id": 465, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "CommandName": "Get-PnPFile", - "Id": 466 + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "Id": 466, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "CommandName": "Get-PnPFile", - "Id": 467 + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "Id": 467, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "CommandName": "Get-PnPFile", - "Id": 468 + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "Id": 468, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "CommandName": "Get-PnPFile", - "Id": 469 + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "Id": 469, + "Rank": 6 }, { - "Rank": 7, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "CommandName": "Get-PnPFile", - "Id": 470 + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Id": 470, + "Rank": 7 }, { - "Rank": 1, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"", "CommandName": "Get-PnPFileAnalyticsData", - "Id": 471 + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"", + "Id": 471, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays", "CommandName": "Get-PnPFileAnalyticsData", - "Id": 472 + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays", + "Id": 472, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "CommandName": "Get-PnPFileAnalyticsData", - "Id": 473 + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", + "Id": 473, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPFileInFolder", "CommandName": "Get-PnPFileInFolder", - "Id": 474 + "Command": "Get-PnPFileInFolder", + "Id": 474, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPFileInFolder -Recurse", "CommandName": "Get-PnPFileInFolder", - "Id": 475 + "Command": "Get-PnPFileInFolder -Recurse", + "Id": 475, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", "CommandName": "Get-PnPFileInFolder", - "Id": 476 + "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", + "Id": 476, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFileInFolder", - "Id": 477 + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 477, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", "CommandName": "Get-PnPFileInFolder", - "Id": 478 + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", + "Id": 478, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Get-PnPFileSharingLink", - "Id": 479 + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 479, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "CommandName": "Get-PnPFileVersion", - "Id": 480 + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Id": 480, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "CommandName": "Get-PnPFileVersion", - "Id": 481 + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Id": 481, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPFlow -AsAdmin", "CommandName": "Get-PnPFlow", - "Id": 482 + "Command": "Get-PnPFlow -AsAdmin", + "Id": 482, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "CommandName": "Get-PnPFlow", - "Id": 483 + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Id": 483, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "CommandName": "Get-PnPFlow", - "Id": 484 + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Id": 484, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "CommandName": "Get-PnPFlowOwner", - "Id": 485 + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Id": 485, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPFolder", "CommandName": "Get-PnPFolder", - "Id": 486 + "Command": "Get-PnPFolder", + "Id": 486, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPFolder -CurrentWebRootFolder", "CommandName": "Get-PnPFolder", - "Id": 487 + "Command": "Get-PnPFolder -CurrentWebRootFolder", + "Id": 487, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPFolder -Url \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 488 + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Id": 488, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 489 + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Id": 489, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 490 + "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", + "Id": 490, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPFolder -List \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 491 + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Id": 491, + "Rank": 6 }, { - "Rank": 1, - "Command": "Get-PnPFolderInFolder", "CommandName": "Get-PnPFolderInFolder", - "Id": 492 + "Command": "Get-PnPFolderInFolder", + "Id": 492, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPFolderInFolder -Recurse", "CommandName": "Get-PnPFolderInFolder", - "Id": 493 + "Command": "Get-PnPFolderInFolder -Recurse", + "Id": 493, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderInFolder", - "Id": 494 + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", + "Id": 494, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "CommandName": "Get-PnPFolderInFolder", - "Id": 495 + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Id": 495, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "CommandName": "Get-PnPFolderInFolder", - "Id": 496 + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Id": 496, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", "CommandName": "Get-PnPFolderInFolder", - "Id": 497 + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", + "Id": 497, + "Rank": 6 }, { - "Rank": 1, - "Command": "Get-PnPFolderItem", "CommandName": "Get-PnPFolderItem", - "Id": 498 + "Command": "Get-PnPFolderItem", + "Id": 498, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPFolderItem -Recurse", "CommandName": "Get-PnPFolderItem", - "Id": 499 + "Command": "Get-PnPFolderItem -Recurse", + "Id": 499, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderItem", - "Id": 500 + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Id": 500, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderItem", - "Id": 501 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 501, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "CommandName": "Get-PnPFolderItem", - "Id": 502 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Id": 502, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderItem", - "Id": 503 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Id": 503, + "Rank": 6 }, { - "Rank": 1, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Get-PnPFolderSharingLink", - "Id": 504 + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 504, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPFolderStorageMetric", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 505 + "Command": "Get-PnPFolderStorageMetric", + "Id": 505, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 506 + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Id": 506, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 507 + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Id": 507, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPFooter", "CommandName": "Get-PnPFooter", - "Id": 508 + "Command": "Get-PnPFooter", + "Id": 508, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPGraphAccessToken", "CommandName": "Get-PnPGraphAccessToken", - "Id": 509 + "Command": "Get-PnPGraphAccessToken", + "Id": 509, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPGraphAccessToken -Decoded", "CommandName": "Get-PnPGraphAccessToken", - "Id": 510 + "Command": "Get-PnPGraphAccessToken -Decoded", + "Id": 510, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPGraphSubscription", "CommandName": "Get-PnPGraphSubscription", - "Id": 511 + "Command": "Get-PnPGraphSubscription", + "Id": 511, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPGraphSubscription", - "Id": 512 + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 512, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPGroup", "CommandName": "Get-PnPGroup", - "Id": 513 + "Command": "Get-PnPGroup", + "Id": 513, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPGroup -Identity 'My Site Users'", "CommandName": "Get-PnPGroup", - "Id": 514 + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Id": 514, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPGroup -AssociatedMemberGroup", "CommandName": "Get-PnPGroup", - "Id": 515 + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Id": 515, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "CommandName": "Get-PnPGroupMember", - "Id": 516 + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Id": 516, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "CommandName": "Get-PnPGroupMember", - "Id": 517 + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Id": 517, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "CommandName": "Get-PnPGroupPermissions", - "Id": 518 + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Id": 518, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPHideDefaultThemes", "CommandName": "Get-PnPHideDefaultThemes", - "Id": 519 + "Command": "Get-PnPHideDefaultThemes", + "Id": 519, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPHomePage", "CommandName": "Get-PnPHomePage", - "Id": 520 + "Command": "Get-PnPHomePage", + "Id": 520, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPHomeSite", "CommandName": "Get-PnPHomeSite", - "Id": 521 + "Command": "Get-PnPHomeSite", + "Id": 521, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "CommandName": "Get-PnPHomeSite", - "Id": 522 + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Id": 522, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPHomeSite -Detailed", "CommandName": "Get-PnPHomeSite", - "Id": 523 + "Command": "Get-PnPHomeSite -Detailed", + "Id": 523, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPHubSite", "CommandName": "Get-PnPHubSite", - "Id": 524 + "Command": "Get-PnPHubSite", + "Id": 524, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSite", - "Id": 525 + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 525, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "CommandName": "Get-PnPHubSite", - "Id": 526 + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Id": 526, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPHubSiteChild", "CommandName": "Get-PnPHubSiteChild", - "Id": 527 + "Command": "Get-PnPHubSiteChild", + "Id": 527, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSiteChild", - "Id": 528 + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 528, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPInPlaceRecordsManagement", "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 529 + "Command": "Get-PnPInPlaceRecordsManagement", + "Id": 529, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 530 + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Id": 530, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPJavaScriptLink", "CommandName": "Get-PnPJavaScriptLink", - "Id": 531 + "Command": "Get-PnPJavaScriptLink", + "Id": 531, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPJavaScriptLink -Scope All", "CommandName": "Get-PnPJavaScriptLink", - "Id": 532 + "Command": "Get-PnPJavaScriptLink -Scope All", + "Id": 532, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPJavaScriptLink -Scope Web", "CommandName": "Get-PnPJavaScriptLink", - "Id": 533 + "Command": "Get-PnPJavaScriptLink -Scope Web", + "Id": 533, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPJavaScriptLink -Scope Site", "CommandName": "Get-PnPJavaScriptLink", - "Id": 534 + "Command": "Get-PnPJavaScriptLink -Scope Site", + "Id": 534, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPJavaScriptLink -Name Test", "CommandName": "Get-PnPJavaScriptLink", - "Id": 535 + "Command": "Get-PnPJavaScriptLink -Name Test", + "Id": 535, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPKnowledgeHubSite", "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 536 + "Command": "Get-PnPKnowledgeHubSite", + "Id": 536, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPLabel", "CommandName": "Get-PnPLabel", - "Id": 537 + "Command": "Get-PnPLabel", + "Id": 537, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "CommandName": "Get-PnPLabel", - "Id": 538 + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Id": 538, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 539 + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Id": 539, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPList", "CommandName": "Get-PnPList", - "Id": 540 + "Command": "Get-PnPList", + "Id": 540, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Get-PnPList", - "Id": 541 + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 541, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPList -Identity Lists/Announcements", "CommandName": "Get-PnPList", - "Id": 542 + "Command": "Get-PnPList -Identity Lists/Announcements", + "Id": 542, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "CommandName": "Get-PnPList", - "Id": 543 + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Id": 543, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "CommandName": "Get-PnPList", - "Id": 544 + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Id": 544, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPListDesign", "CommandName": "Get-PnPListDesign", - "Id": 545 + "Command": "Get-PnPListDesign", + "Id": 545, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPListDesign", - "Id": 546 + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 546, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPListDesign -Identity ListEvent", "CommandName": "Get-PnPListDesign", - "Id": 547 + "Command": "Get-PnPListDesign -Identity ListEvent", + "Id": 547, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 548 + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Id": 548, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPListItem -List Tasks", "CommandName": "Get-PnPListItem", - "Id": 549 + "Command": "Get-PnPListItem -List Tasks", + "Id": 549, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPListItem -List Tasks -Id 1", "CommandName": "Get-PnPListItem", - "Id": 550 + "Command": "Get-PnPListItem -List Tasks -Id 1", + "Id": 550, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "CommandName": "Get-PnPListItem", - "Id": 551 + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Id": 551, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"", "CommandName": "Get-PnPListItem", - "Id": 552 + "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"", + "Id": 552, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"", "CommandName": "Get-PnPListItem", - "Id": 553 + "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"", + "Id": 553, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "CommandName": "Get-PnPListItem", - "Id": 554 + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "Id": 554, + "Rank": 6 }, { - "Rank": 7, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "CommandName": "Get-PnPListItem", - "Id": 555 + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "Id": 555, + "Rank": 7 }, { - "Rank": 8, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "CommandName": "Get-PnPListItem", - "Id": 556 + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Id": 556, + "Rank": 8 }, { - "Rank": 9, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "CommandName": "Get-PnPListItem", - "Id": 557 + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Id": 557, + "Rank": 9 }, { - "Rank": 1, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "CommandName": "Get-PnPListItemAttachment", - "Id": 558 + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "Id": 558, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "CommandName": "Get-PnPListItemAttachment", - "Id": 559 + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Id": 559, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "CommandName": "Get-PnPListItemComment", - "Id": 560 + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Id": 560, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "CommandName": "Get-PnPListItemPermission", - "Id": 561 + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Id": 561, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "CommandName": "Get-PnPListItemVersion", - "Id": 562 + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Id": 562, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "CommandName": "Get-PnPListPermissions", - "Id": 563 + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Id": 563, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "CommandName": "Get-PnPListPermissions", - "Id": 564 + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Id": 564, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "CommandName": "Get-PnPListRecordDeclaration", - "Id": 565 + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Id": 565, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPMasterPage", "CommandName": "Get-PnPMasterPage", - "Id": 566 + "Command": "Get-PnPMasterPage", + "Id": 566, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPMessageCenterAnnouncement", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 567 + "Command": "Get-PnPMessageCenterAnnouncement", + "Id": 567, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 568 + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Id": 568, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365ExpiringGroup", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 569 + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 569, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 570 + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Id": 570, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365Group", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 571 + "Command": "Get-PnPMicrosoft365Group", + "Id": 571, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 572 + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Id": 572, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 573 + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Id": 573, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 574 + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Id": 574, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPMicrosoft365Group -Identity $group", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 575 + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Id": 575, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 576 + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Id": 576, + "Rank": 6 }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupEndpoint", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 577 + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 577, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 578 + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Id": 578, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 579 + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 579, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 580 + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Id": 580, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 581 + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Id": 581, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 582 + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Id": 582, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 583 + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Id": 583, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 584 + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Id": 584, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettings", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 585 + "Command": "Get-PnPMicrosoft365GroupSettings", + "Id": 585, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 586 + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Id": 586, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 587 + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 587, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 588 + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Id": 588, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupTeam", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 589 + "Command": "Get-PnPMicrosoft365GroupTeam", + "Id": 589, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 590 + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Id": 590, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 591 + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 591, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 592 + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 592, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 593 + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Id": 593, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 594 + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 594, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPNavigationNode", "CommandName": "Get-PnPNavigationNode", - "Id": 595 + "Command": "Get-PnPNavigationNode", + "Id": 595, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPNavigationNode -Location QuickLaunch", "CommandName": "Get-PnPNavigationNode", - "Id": 596 + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Id": 596, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "CommandName": "Get-PnPNavigationNode", - "Id": 597 + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Id": 597, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPOrgAssetsLibrary", "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 598 + "Command": "Get-PnPOrgAssetsLibrary", + "Id": 598, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPOrgNewsSite", "CommandName": "Get-PnPOrgNewsSite", - "Id": 599 + "Command": "Get-PnPOrgNewsSite", + "Id": 599, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "CommandName": "Get-PnPPage", - "Id": 600 + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Id": 600, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPPage \"MyPage\"", "CommandName": "Get-PnPPage", - "Id": 601 + "Command": "Get-PnPPage \"MyPage\"", + "Id": 601, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "CommandName": "Get-PnPPage", - "Id": 602 + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Id": 602, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "CommandName": "Get-PnPPage", - "Id": 603 + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Id": 603, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPPageComponent -Page Home", "CommandName": "Get-PnPPageComponent", - "Id": 604 + "Command": "Get-PnPPageComponent -Page Home", + "Id": 604, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPPageComponent", - "Id": 605 + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 605, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "CommandName": "Get-PnPPageComponent", - "Id": 606 + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Id": 606, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerBucket", - "Id": 607 + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 607, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPPlannerConfiguration", "CommandName": "Get-PnPPlannerConfiguration", - "Id": 608 + "Command": "Get-PnPPlannerConfiguration", + "Id": 608, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "CommandName": "Get-PnPPlannerPlan", - "Id": 609 + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Id": 609, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "CommandName": "Get-PnPPlannerPlan", - "Id": 610 + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Id": 610, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "CommandName": "Get-PnPPlannerPlan", - "Id": 611 + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Id": 611, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Get-PnPPlannerRosterMember", - "Id": 612 + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 612, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 613 + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Id": 613, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 614 + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 614, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerTask", - "Id": 615 + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 615, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Id": 616 + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 616, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Id": 617 + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 617, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 618 + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 618, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 619 + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Id": 619, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPPowerPlatformEnvironment", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 620 + "Command": "Get-PnPPowerPlatformEnvironment", + "Id": 620, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 621 + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Id": 621, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 622 + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Id": 622, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)", "CommandName": "Get-PnPPowerPlatformSolution", - "Id": 623 + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)", + "Id": 623, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'", "CommandName": "Get-PnPPowerPlatformSolution", - "Id": 624 + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'", + "Id": 624, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPPowerShellTelemetryEnabled", "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 625 + "Command": "Get-PnPPowerShellTelemetryEnabled", + "Id": 625, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPPropertyBag", "CommandName": "Get-PnPPropertyBag", - "Id": 626 + "Command": "Get-PnPPropertyBag", + "Id": 626, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPPropertyBag -Key MyKey", "CommandName": "Get-PnPPropertyBag", - "Id": 627 + "Command": "Get-PnPPropertyBag -Key MyKey", + "Id": 627, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPPropertyBag -Folder /MyFolder", "CommandName": "Get-PnPPropertyBag", - "Id": 628 + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Id": 628, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Id": 629 + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Id": 629, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Id": 630 + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Id": 630, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPPublishingImageRendition", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 631 + "Command": "Get-PnPPublishingImageRendition", + "Id": 631, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 632 + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Id": 632, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPPublishingImageRendition -Identity 2", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 633 + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Id": 633, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPRecycleBinItem", "CommandName": "Get-PnPRecycleBinItem", - "Id": 634 + "Command": "Get-PnPRecycleBinItem", + "Id": 634, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "CommandName": "Get-PnPRecycleBinItem", - "Id": 635 + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Id": 635, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPRecycleBinItem -FirstStage", "CommandName": "Get-PnPRecycleBinItem", - "Id": 636 + "Command": "Get-PnPRecycleBinItem -FirstStage", + "Id": 636, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPRecycleBinItem -SecondStage", "CommandName": "Get-PnPRecycleBinItem", - "Id": 637 + "Command": "Get-PnPRecycleBinItem -SecondStage", + "Id": 637, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "CommandName": "Get-PnPRecycleBinItem", - "Id": 638 + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Id": 638, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPRequestAccessEmails", "CommandName": "Get-PnPRequestAccessEmails", - "Id": 639 + "Command": "Get-PnPRequestAccessEmails", + "Id": 639, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPRetentionLabel", "CommandName": "Get-PnPRetentionLabel", - "Id": 640 + "Command": "Get-PnPRetentionLabel", + "Id": 640, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "CommandName": "Get-PnPRetentionLabel", - "Id": 641 + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Id": 641, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPRoleDefinition", "CommandName": "Get-PnPRoleDefinition", - "Id": 642 + "Command": "Get-PnPRoleDefinition", + "Id": 642, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPRoleDefinition -Identity Read", "CommandName": "Get-PnPRoleDefinition", - "Id": 643 + "Command": "Get-PnPRoleDefinition -Identity Read", + "Id": 643, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "CommandName": "Get-PnPRoleDefinition", - "Id": 644 + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Id": 644, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPSearchConfiguration", "CommandName": "Get-PnPSearchConfiguration", - "Id": 645 + "Command": "Get-PnPSearchConfiguration", + "Id": 645, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSearchConfiguration -Scope Site", "CommandName": "Get-PnPSearchConfiguration", - "Id": 646 + "Command": "Get-PnPSearchConfiguration -Scope Site", + "Id": 646, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSearchConfiguration -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Id": 647 + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Id": 647, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Id": 648 + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 648, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "CommandName": "Get-PnPSearchConfiguration", - "Id": 649 + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Id": 649, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "CommandName": "Get-PnPSearchConfiguration", - "Id": 650 + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Id": 650, + "Rank": 6 }, { - "Rank": 7, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "CommandName": "Get-PnPSearchConfiguration", - "Id": 651 + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Id": 651, + "Rank": 7 }, { - "Rank": 8, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "CommandName": "Get-PnPSearchConfiguration", - "Id": 652 + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Id": 652, + "Rank": 8 }, { - "Rank": 1, - "Command": "Get-PnPSearchCrawlLog", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 653 + "Command": "Get-PnPSearchCrawlLog", + "Id": 653, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 654 + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Id": 654, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 655 + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Id": 655, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 656 + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Id": 656, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 657 + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Id": 657, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 658 + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Id": 658, + "Rank": 6 }, { - "Rank": 7, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 659 + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Id": 659, + "Rank": 7 }, { - "Rank": 1, - "Command": "Get-PnPSearchSettings", "CommandName": "Get-PnPSearchSettings", - "Id": 660 + "Command": "Get-PnPSearchSettings", + "Id": 660, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPServiceCurrentHealth", "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 661 + "Command": "Get-PnPServiceCurrentHealth", + "Id": 661, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 662 + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Id": 662, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPServiceHealthIssue", "CommandName": "Get-PnPServiceHealthIssue", - "Id": 663 + "Command": "Get-PnPServiceHealthIssue", + "Id": 663, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "CommandName": "Get-PnPServiceHealthIssue", - "Id": 664 + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Id": 664, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPSharePointAddIn", "CommandName": "Get-PnPSharePointAddIn", - "Id": 665 + "Command": "Get-PnPSharePointAddIn", + "Id": 665, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "CommandName": "Get-PnPSharePointAddIn", - "Id": 666 + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Id": 666, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPSharingForNonOwnersOfSite", "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 667 + "Command": "Get-PnPSharingForNonOwnersOfSite", + "Id": 667, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPSite", "CommandName": "Get-PnPSite", - "Id": 668 + "Command": "Get-PnPSite", + "Id": 668, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "CommandName": "Get-PnPSite", - "Id": 669 + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Id": 669, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPSiteAnalyticsData -All", "CommandName": "Get-PnPSiteAnalyticsData", - "Id": 670 + "Command": "Get-PnPSiteAnalyticsData -All", + "Id": 670, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteAnalyticsData -LastSevenDays", "CommandName": "Get-PnPSiteAnalyticsData", - "Id": 671 + "Command": "Get-PnPSiteAnalyticsData -LastSevenDays", + "Id": 671, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "CommandName": "Get-PnPSiteAnalyticsData", - "Id": 672 + "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", + "Id": 672, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "CommandName": "Get-PnPSiteAnalyticsData", - "Id": 673 + "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", + "Id": 673, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPSiteClosure", "CommandName": "Get-PnPSiteClosure", - "Id": 674 + "Command": "Get-PnPSiteClosure", + "Id": 674, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPSiteCollectionAdmin", "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 675 + "Command": "Get-PnPSiteCollectionAdmin", + "Id": 675, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPSiteCollectionAppCatalog", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 676 + "Command": "Get-PnPSiteCollectionAppCatalog", + "Id": 676, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 677 + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Id": 677, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 678 + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Id": 678, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPSiteCollectionTermStore", "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 679 + "Command": "Get-PnPSiteCollectionTermStore", + "Id": 679, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPSiteDesign", "CommandName": "Get-PnPSiteDesign", - "Id": 680 + "Command": "Get-PnPSiteDesign", + "Id": 680, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesign", - "Id": 681 + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 681, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesignRights", - "Id": 682 + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 682, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPSiteDesignRun", "CommandName": "Get-PnPSiteDesignRun", - "Id": 683 + "Command": "Get-PnPSiteDesignRun", + "Id": 683, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignRun", - "Id": 684 + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Id": 684, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Get-PnPSiteDesignTask", - "Id": 685 + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 685, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteDesignTask", "CommandName": "Get-PnPSiteDesignTask", - "Id": 686 + "Command": "Get-PnPSiteDesignTask", + "Id": 686, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignTask", - "Id": 687 + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Id": 687, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPSiteGroup", "CommandName": "Get-PnPSiteGroup", - "Id": 688 + "Command": "Get-PnPSiteGroup", + "Id": 688, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Id": 689 + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 689, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "CommandName": "Get-PnPSiteGroup", - "Id": 690 + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Id": 690, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Id": 691 + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 691, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPSitePolicy", "CommandName": "Get-PnPSitePolicy", - "Id": 692 + "Command": "Get-PnPSitePolicy", + "Id": 692, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSitePolicy -AllAvailable", "CommandName": "Get-PnPSitePolicy", - "Id": 693 + "Command": "Get-PnPSitePolicy -AllAvailable", + "Id": 693, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Get-PnPSitePolicy", - "Id": 694 + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 694, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPSiteScript", "CommandName": "Get-PnPSiteScript", - "Id": 695 + "Command": "Get-PnPSiteScript", + "Id": 695, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteScript", - "Id": 696 + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 696, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 697 + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Id": 697, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 698 + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "Id": 698, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 699 + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Id": 699, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 700 + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Id": 700, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 701 + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "Id": 701, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 702 + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "Id": 702, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 703 + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Id": 703, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 704 + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Id": 704, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 705 + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Id": 705, + "Rank": 6 }, { - "Rank": 1, - "Command": "Get-PnPSiteSearchQueryResults", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 706 + "Command": "Get-PnPSiteSearchQueryResults", + "Id": 706, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 707 + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Id": 707, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 708 + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Id": 708, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 709 + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Id": 709, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 710 + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Id": 710, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPSiteSearchQueryResults -All", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 711 + "Command": "Get-PnPSiteSearchQueryResults -All", + "Id": 711, + "Rank": 6 }, { - "Rank": 1, - "Command": "Get-PnPSiteSensitivityLabel", "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 712 + "Command": "Get-PnPSiteSensitivityLabel", + "Id": 712, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPSiteSetVersionPolicyProgress", "CommandName": "Get-PnPSiteSetVersionPolicyProgress", - "Id": 713 + "Command": "Get-PnPSiteSetVersionPolicyProgress", + "Id": 713, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPSiteTemplate -Out template.pnp", "CommandName": "Get-PnPSiteTemplate", - "Id": 714 + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Id": 714, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSiteTemplate -Out template.xml", "CommandName": "Get-PnPSiteTemplate", - "Id": 715 + "Command": "Get-PnPSiteTemplate -Out template.xml", + "Id": 715, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSiteTemplate -Out template.md", "CommandName": "Get-PnPSiteTemplate", - "Id": 716 + "Command": "Get-PnPSiteTemplate -Out template.md", + "Id": 716, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "CommandName": "Get-PnPSiteTemplate", - "Id": 717 + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Id": 717, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "CommandName": "Get-PnPSiteTemplate", - "Id": 718 + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Id": 718, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "CommandName": "Get-PnPSiteTemplate", - "Id": 719 + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Id": 719, + "Rank": 6 }, { - "Rank": 7, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "CommandName": "Get-PnPSiteTemplate", - "Id": 720 + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Id": 720, + "Rank": 7 }, { - "Rank": 8, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "CommandName": "Get-PnPSiteTemplate", - "Id": 721 + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Id": 721, + "Rank": 8 }, { - "Rank": 9, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 722 + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Id": 722, + "Rank": 9 }, { - "Rank": 10, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 723 + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Id": 723, + "Rank": 10 }, { - "Rank": 11, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "CommandName": "Get-PnPSiteTemplate", - "Id": 724 + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Id": 724, + "Rank": 11 }, { - "Rank": 12, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "CommandName": "Get-PnPSiteTemplate", - "Id": 725 + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "Id": 725, + "Rank": 12 }, { - "Rank": 13, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "CommandName": "Get-PnPSiteTemplate", - "Id": 726 + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", + "Id": 726, + "Rank": 13 }, { - "Rank": 14, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 727 + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "Id": 727, + "Rank": 14 }, { - "Rank": 1, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Get-PnPSiteUserInvitations", - "Id": 728 + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 728, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPSiteVersionPolicy", "CommandName": "Get-PnPSiteVersionPolicy", - "Id": 729 + "Command": "Get-PnPSiteVersionPolicy", + "Id": 729, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPStorageEntity", "CommandName": "Get-PnPStorageEntity", - "Id": 730 + "Command": "Get-PnPStorageEntity", + "Id": 730, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPStorageEntity -Key MyKey", "CommandName": "Get-PnPStorageEntity", - "Id": 731 + "Command": "Get-PnPStorageEntity -Key MyKey", + "Id": 731, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPStorageEntity -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Id": 732 + "Command": "Get-PnPStorageEntity -Scope Site", + "Id": 732, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Id": 733 + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 733, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPStoredCredential -Name O365", "CommandName": "Get-PnPStoredCredential", - "Id": 734 + "Command": "Get-PnPStoredCredential -Name O365", + "Id": 734, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 735 + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 735, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 736 + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 736, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 737 + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Id": 737, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPSubWeb", "CommandName": "Get-PnPSubWeb", - "Id": 738 + "Command": "Get-PnPSubWeb", + "Id": 738, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSubWeb -Recurse", "CommandName": "Get-PnPSubWeb", - "Id": 739 + "Command": "Get-PnPSubWeb -Recurse", + "Id": 739, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "CommandName": "Get-PnPSubWeb", - "Id": 740 + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Id": 740, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "CommandName": "Get-PnPSubWeb", - "Id": 741 + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Id": 741, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "CommandName": "Get-PnPSubWeb", - "Id": 742 + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Id": 742, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPSyntexModel", "CommandName": "Get-PnPSyntexModel", - "Id": 743 + "Command": "Get-PnPSyntexModel", + "Id": 743, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPSyntexModel -Identity 1", "CommandName": "Get-PnPSyntexModel", - "Id": 744 + "Command": "Get-PnPSyntexModel -Identity 1", + "Id": 744, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModel", - "Id": 745 + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Id": 745, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModelPublication", - "Id": 746 + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Id": 746, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "CommandName": "Get-PnPTaxonomyItem", - "Id": 747 + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Id": 747, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTeamsApp", "CommandName": "Get-PnPTeamsApp", - "Id": 748 + "Command": "Get-PnPTeamsApp", + "Id": 748, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "CommandName": "Get-PnPTeamsApp", - "Id": 749 + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Id": 749, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "CommandName": "Get-PnPTeamsApp", - "Id": 750 + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Id": 750, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "CommandName": "Get-PnPTeamsChannel", - "Id": 751 + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Id": 751, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "CommandName": "Get-PnPTeamsChannel", - "Id": 752 + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "Id": 752, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannel", - "Id": 753 + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 753, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 754 + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "Id": 754, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 755 + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 755, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 756 + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Id": 756, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 757 + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Id": 757, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 758 + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "Id": 758, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 759 + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Id": 759, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 760 + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Id": 760, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 761 + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "Id": 761, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 762 + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "Id": 762, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 763 + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 763, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 764 + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Id": 764, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 765 + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Id": 765, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "CommandName": "Get-PnPTeamsTab", - "Id": 766 + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "Id": 766, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Id": 767 + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "Id": 767, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "CommandName": "Get-PnPTeamsTab", - "Id": 768 + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", + "Id": 768, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsTab", - "Id": 769 + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Id": 769, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Id": 770 + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Id": 770, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Get-PnPTeamsTag", - "Id": 771 + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 771, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Get-PnPTeamsTag", - "Id": 772 + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 772, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPTeamsTeam", "CommandName": "Get-PnPTeamsTeam", - "Id": 773 + "Command": "Get-PnPTeamsTeam", + "Id": 773, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 774 + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Id": 774, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 775 + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Id": 775, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 776 + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Id": 776, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 777 + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Id": 777, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPTeamsUser -Team MyTeam", "CommandName": "Get-PnPTeamsUser", - "Id": 778 + "Command": "Get-PnPTeamsUser -Team MyTeam", + "Id": 778, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "CommandName": "Get-PnPTeamsUser", - "Id": 779 + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Id": 779, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "CommandName": "Get-PnPTeamsUser", - "Id": 780 + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Id": 780, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "CommandName": "Get-PnPTeamsUser", - "Id": 781 + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Id": 781, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPTemporarilyDisableAppBar", "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 782 + "Command": "Get-PnPTemporarilyDisableAppBar", + "Id": 782, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTenant", "CommandName": "Get-PnPTenant", - "Id": 783 + "Command": "Get-PnPTenant", + "Id": 783, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTenantAppCatalogUrl", "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 784 + "Command": "Get-PnPTenantAppCatalogUrl", + "Id": 784, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 785 + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Id": 785, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 786 + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Id": 786, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 787 + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Id": 787, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTenantDeletedSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 788 + "Command": "Get-PnPTenantDeletedSite", + "Id": 788, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTenantDeletedSite -Detailed", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 789 + "Command": "Get-PnPTenantDeletedSite -Detailed", + "Id": 789, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 790 + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 790, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 791 + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Id": 791, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 792 + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Id": 792, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPTenantId", "CommandName": "Get-PnPTenantId", - "Id": 793 + "Command": "Get-PnPTenantId", + "Id": 793, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTenantId contoso", "CommandName": "Get-PnPTenantId", - "Id": 794 + "Command": "Get-PnPTenantId contoso", + "Id": 794, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "CommandName": "Get-PnPTenantId", - "Id": 795 + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Id": 795, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "CommandName": "Get-PnPTenantId", - "Id": 796 + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Id": 796, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "CommandName": "Get-PnPTenantInfo", - "Id": 797 + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Id": 797, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "CommandName": "Get-PnPTenantInfo", - "Id": 798 + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Id": 798, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTenantInfo", "CommandName": "Get-PnPTenantInfo", - "Id": 799 + "Command": "Get-PnPTenantInfo", + "Id": 799, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPTenantInfo -CurrentTenant", "CommandName": "Get-PnPTenantInfo", - "Id": 800 + "Command": "Get-PnPTenantInfo -CurrentTenant", + "Id": 800, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPTenantInstance", "CommandName": "Get-PnPTenantInstance", - "Id": 801 + "Command": "Get-PnPTenantInstance", + "Id": 801, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTenantRecycleBinItem", "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 802 + "Command": "Get-PnPTenantRecycleBinItem", + "Id": 802, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "CommandName": "Get-PnPTenantSequence", - "Id": 803 + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Id": 803, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "CommandName": "Get-PnPTenantSequence", - "Id": 804 + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Id": 804, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "CommandName": "Get-PnPTenantSequenceSite", - "Id": 805 + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Id": 805, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "CommandName": "Get-PnPTenantSequenceSite", - "Id": 806 + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Id": 806, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPTenantSite", "CommandName": "Get-PnPTenantSite", - "Id": 807 + "Command": "Get-PnPTenantSite", + "Id": 807, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTenantSite -Detailed", "CommandName": "Get-PnPTenantSite", - "Id": 808 + "Command": "Get-PnPTenantSite -Detailed", + "Id": 808, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "CommandName": "Get-PnPTenantSite", - "Id": 809 + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Id": 809, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "CommandName": "Get-PnPTenantSite", - "Id": 810 + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Id": 810, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "CommandName": "Get-PnPTenantSite", - "Id": 811 + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Id": 811, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "CommandName": "Get-PnPTenantSite", - "Id": 812 + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Id": 812, + "Rank": 6 }, { - "Rank": 7, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "CommandName": "Get-PnPTenantSite", - "Id": 813 + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Id": 813, + "Rank": 7 }, { - "Rank": 8, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "CommandName": "Get-PnPTenantSite", - "Id": 814 + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Id": 814, + "Rank": 8 }, { - "Rank": 9, - "Command": "Get-PnPTenantSite -GroupIdDefined $true", "CommandName": "Get-PnPTenantSite", - "Id": 815 + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Id": 815, + "Rank": 9 }, { - "Rank": 1, - "Command": "Get-PnPTenantSyncClientRestriction", "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 816 + "Command": "Get-PnPTenantSyncClientRestriction", + "Id": 816, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "CommandName": "Get-PnPTenantTemplate", - "Id": 817 + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Id": 817, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "CommandName": "Get-PnPTenantTemplate", - "Id": 818 + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "Id": 818, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "CommandName": "Get-PnPTenantTemplate", - "Id": 819 + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Id": 819, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPTenantTheme", "CommandName": "Get-PnPTenantTheme", - "Id": 820 + "Command": "Get-PnPTenantTheme", + "Id": 820, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Get-PnPTenantTheme", - "Id": 821 + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 821, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "CommandName": "Get-PnPTenantTheme", - "Id": 822 + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Id": 822, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 823 + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 823, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 824 + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 824, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 825 + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 825, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "CommandName": "Get-PnPTerm", - "Id": 826 + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "Id": 826, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "CommandName": "Get-PnPTerm", - "Id": 827 + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Id": 827, + "Rank": 5 }, { - "Rank": 1, - "Command": "Get-PnPTermGroup", "CommandName": "Get-PnPTermGroup", - "Id": 828 + "Command": "Get-PnPTermGroup", + "Id": 828, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTermGroup -Identity \"Departments\"", "CommandName": "Get-PnPTermGroup", - "Id": 829 + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Id": 829, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "CommandName": "Get-PnPTermGroup", - "Id": 830 + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Id": 830, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "CommandName": "Get-PnPTermLabel", - "Id": 831 + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Id": 831, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "CommandName": "Get-PnPTermLabel", - "Id": 832 + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Id": 832, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermLabel", - "Id": 833 + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 833, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Id": 834 + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Id": 834, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Id": 835 + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Id": 835, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "CommandName": "Get-PnPTermSet", - "Id": 836 + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Id": 836, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPTheme", "CommandName": "Get-PnPTheme", - "Id": 837 + "Command": "Get-PnPTheme", + "Id": 837, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTheme -DetectCurrentComposedLook", "CommandName": "Get-PnPTheme", - "Id": 838 + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Id": 838, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPTimeZoneId", "CommandName": "Get-PnPTimeZoneId", - "Id": 839 + "Command": "Get-PnPTimeZoneId", + "Id": 839, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPTimeZoneId -Match Stockholm", "CommandName": "Get-PnPTimeZoneId", - "Id": 840 + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Id": 840, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "CommandName": "Get-PnPUnfurlLink", - "Id": 841 + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "Id": 841, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 842 + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Id": 842, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPUPABulkImportStatus", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 843 + "Command": "Get-PnPUPABulkImportStatus", + "Id": 843, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 844 + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Id": 844, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPUPABulkImportStatus -JobId <guid>", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 845 + "Command": "Get-PnPUPABulkImportStatus -JobId <guid>", + "Id": 845, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 846 + "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails", + "Id": 846, + "Rank": 4 }, { - "Rank": 1, - "Command": "Get-PnPUser", "CommandName": "Get-PnPUser", - "Id": 847 + "Command": "Get-PnPUser", + "Id": 847, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPUser -Identity 23", "CommandName": "Get-PnPUser", - "Id": 848 + "Command": "Get-PnPUser -Identity 23", + "Id": 848, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Id": 849 + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Id": 849, + "Rank": 3 }, { - "Rank": 4, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Id": 850 + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Id": 850, + "Rank": 4 }, { - "Rank": 5, - "Command": "Get-PnPUser -WithRightsAssigned", "CommandName": "Get-PnPUser", - "Id": 851 + "Command": "Get-PnPUser -WithRightsAssigned", + "Id": 851, + "Rank": 5 }, { - "Rank": 6, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "CommandName": "Get-PnPUser", - "Id": 852 + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Id": 852, + "Rank": 6 }, { - "Rank": 7, - "Command": "Get-PnPUser -WithRightsAssignedDetailed", "CommandName": "Get-PnPUser", - "Id": 853 + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Id": 853, + "Rank": 7 }, { - "Rank": 1, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 854 + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Id": 854, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 855 + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Id": 855, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 856 + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Id": 856, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 857 + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Id": 857, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPView -List \"Demo List\"", "CommandName": "Get-PnPView", - "Id": 858 + "Command": "Get-PnPView -List \"Demo List\"", + "Id": 858, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "CommandName": "Get-PnPView", - "Id": 859 + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Id": 859, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "CommandName": "Get-PnPView", - "Id": 860 + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Id": 860, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPVivaConnectionsDashboardACE", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 861 + "Command": "Get-PnPVivaConnectionsDashboardACE", + "Id": 861, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 862 + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 862, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPWeb", "CommandName": "Get-PnPWeb", - "Id": 863 + "Command": "Get-PnPWeb", + "Id": 863, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPWebHeader", "CommandName": "Get-PnPWebHeader", - "Id": 864 + "Command": "Get-PnPWebHeader", + "Id": 864, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPWebhookSubscription -List MyList", "CommandName": "Get-PnPWebhookSubscription", - "Id": 865 + "Command": "Get-PnPWebhookSubscription -List MyList", + "Id": 865, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "CommandName": "Get-PnPWebPart", - "Id": 866 + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "Id": 866, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPart", - "Id": 867 + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 867, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "CommandName": "Get-PnPWebPartProperty", - "Id": 868 + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "Id": 868, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "CommandName": "Get-PnPWebPartProperty", - "Id": 869 + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "Id": 869, + "Rank": 2 }, { - "Rank": 1, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPartXml", - "Id": 870 + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 870, + "Rank": 1 }, { - "Rank": 1, - "Command": "Get-PnPWebTemplates", "CommandName": "Get-PnPWebTemplates", - "Id": 871 + "Command": "Get-PnPWebTemplates", + "Id": 871, + "Rank": 1 }, { - "Rank": 2, - "Command": "Get-PnPWebTemplates -LCID 1033", "CommandName": "Get-PnPWebTemplates", - "Id": 872 + "Command": "Get-PnPWebTemplates -LCID 1033", + "Id": 872, + "Rank": 2 }, { - "Rank": 3, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "CommandName": "Get-PnPWebTemplates", - "Id": 873 + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Id": 873, + "Rank": 3 }, { - "Rank": 1, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "CommandName": "Get-PnPWikiPageContent", - "Id": 874 + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Id": 874, + "Rank": 1 }, { - "Rank": 1, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 875 + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "Id": 875, + "Rank": 1 }, { - "Rank": 2, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 876 + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", + "Id": 876, + "Rank": 2 }, { - "Rank": 1, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPHubSiteRights", - "Id": 877 + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 877, + "Rank": 1 }, { - "Rank": 1, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPSiteDesignRights", - "Id": 878 + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 878, + "Rank": 1 }, { - "Rank": 1, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 879 + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 879, + "Rank": 1 }, { - "Rank": 1, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "CommandName": "Import-PnPTaxonomy", - "Id": 880 + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Id": 880, + "Rank": 1 }, { - "Rank": 2, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "CommandName": "Import-PnPTaxonomy", - "Id": 881 + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Id": 881, + "Rank": 2 }, { - "Rank": 3, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "CommandName": "Import-PnPTaxonomy", - "Id": 882 + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Id": 882, + "Rank": 3 }, { - "Rank": 1, - "Command": "Import-PnPTermGroupFromXml -Xml $xml", "CommandName": "Import-PnPTermGroupFromXml", - "Id": 883 + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Id": 883, + "Rank": 1 }, { - "Rank": 2, - "Command": "Import-PnPTermGroupFromXml -Path input.xml", "CommandName": "Import-PnPTermGroupFromXml", - "Id": 884 + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Id": 884, + "Rank": 2 }, { - "Rank": 1, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "CommandName": "Import-PnPTermSet", - "Id": 885 + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "Id": 885, + "Rank": 1 }, { - "Rank": 2, - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", "CommandName": "Import-PnPTermSet", - "Id": 886 + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", + "Id": 886, + "Rank": 2 }, { - "Rank": 3, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "CommandName": "Import-PnPTermSet", - "Id": 887 + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", + "Id": 887, + "Rank": 3 }, { - "Rank": 1, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Install-PnPApp", - "Id": 888 + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 888, + "Rank": 1 }, { - "Rank": 2, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Install-PnPApp", - "Id": 889 + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 889, + "Rank": 2 }, { - "Rank": 1, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "CommandName": "Invoke-PnPGraphMethod", - "Id": 890 + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "Id": 890, + "Rank": 1 }, { - "Rank": 2, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "CommandName": "Invoke-PnPGraphMethod", - "Id": 891 + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Id": 891, + "Rank": 2 }, { - "Rank": 3, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "CommandName": "Invoke-PnPGraphMethod", - "Id": 892 + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "Id": 892, + "Rank": 3 }, { - "Rank": 4, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "CommandName": "Invoke-PnPGraphMethod", - "Id": 893 + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "Id": 893, + "Rank": 4 }, { - "Rank": 5, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "CommandName": "Invoke-PnPGraphMethod", - "Id": 894 + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "Id": 894, + "Rank": 5 }, { - "Rank": 6, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", "CommandName": "Invoke-PnPGraphMethod", - "Id": 895 + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", + "Id": 895, + "Rank": 6 }, { - "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\"", "CommandName": "Invoke-PnPGraphMethod", - "Id": 896 + "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": 896, + "Rank": 7 }, { - "Rank": 1, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPListDesign", - "Id": 897 + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 897, + "Rank": 1 }, { - "Rank": 2, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPListDesign", - "Id": 898 + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 898, + "Rank": 2 }, { - "Rank": 1, - "Command": "Invoke-PnPQuery -RetryCount 5", "CommandName": "Invoke-PnPQuery", - "Id": 899 + "Command": "Invoke-PnPQuery -RetryCount 5", + "Id": 899, + "Rank": 1 }, { - "Rank": 1, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPSiteDesign", - "Id": 900 + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 900, + "Rank": 1 }, { - "Rank": 2, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPSiteDesign", - "Id": 901 + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 901, + "Rank": 2 }, { - "Rank": 1, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "CommandName": "Invoke-PnPSiteScript", - "Id": 902 + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "Id": 902, + "Rank": 1 }, { - "Rank": 1, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", "CommandName": "Invoke-PnPSiteSwap", - "Id": 903 + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "Id": 903, + "Rank": 1 }, { - "Rank": 2, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", "CommandName": "Invoke-PnPSiteSwap", - "Id": 904 + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "Id": 904, + "Rank": 2 }, { - "Rank": 3, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", "CommandName": "Invoke-PnPSiteSwap", - "Id": 905 + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", + "Id": 905, + "Rank": 3 }, { - "Rank": 1, - "Command": "Invoke-PnPSiteTemplate -Path template.xml", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 906 + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Id": 906, + "Rank": 1 }, { - "Rank": 2, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 907 + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "Id": 907, + "Rank": 2 }, { - "Rank": 3, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 908 + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 908, + "Rank": 3 }, { - "Rank": 4, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 909 + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Id": 909, + "Rank": 4 }, { - "Rank": 5, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 910 + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Id": 910, + "Rank": 5 }, { - "Rank": 6, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 911 + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Id": 911, + "Rank": 6 }, { - "Rank": 7, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 912 + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Id": 912, + "Rank": 7 }, { - "Rank": 8, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 913 + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Id": 913, + "Rank": 8 }, { - "Rank": 1, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "CommandName": "Invoke-PnPSPRestMethod", - "Id": 914 + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Id": 914, + "Rank": 1 }, { - "Rank": 1, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 915 + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Id": 915, + "Rank": 1 }, { - "Rank": 2, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 916 + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Id": 916, + "Rank": 2 }, { - "Rank": 3, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 917 + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 917, + "Rank": 3 }, { - "Rank": 1, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Id": 918 + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Id": 918, + "Rank": 1 }, { - "Rank": 2, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Id": 919 + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Id": 919, + "Rank": 2 }, { - "Rank": 1, - "Command": "Measure-PnPList \"Documents\"", "CommandName": "Measure-PnPList", - "Id": 920 + "Command": "Measure-PnPList \"Documents\"", + "Id": 920, + "Rank": 1 }, { - "Rank": 2, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "CommandName": "Measure-PnPList", - "Id": 921 + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Id": 921, + "Rank": 2 }, { - "Rank": 1, - "Command": "Measure-PnPWeb", "CommandName": "Measure-PnPWeb", - "Id": 922 + "Command": "Measure-PnPWeb", + "Id": 922, + "Rank": 1 }, { - "Rank": 2, - "Command": "Measure-PnPWeb $web -Recursive", "CommandName": "Measure-PnPWeb", - "Id": 923 + "Command": "Measure-PnPWeb $web -Recursive", + "Id": 923, + "Rank": 2 }, { - "Rank": 1, - "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", "CommandName": "Merge-PnPTerm", - "Id": 924 + "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", + "Id": 924, + "Rank": 1 }, { - "Rank": 1, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "CommandName": "Move-PnPFile", - "Id": 925 + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "Id": 925, + "Rank": 1 }, { - "Rank": 2, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "CommandName": "Move-PnPFile", - "Id": 926 + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "Id": 926, + "Rank": 2 }, { - "Rank": 3, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Id": 927 + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 927, + "Rank": 3 }, { - "Rank": 4, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Id": 928 + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 928, + "Rank": 4 }, { - "Rank": 1, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "CommandName": "Move-PnPFolder", - "Id": 929 + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Id": 929, + "Rank": 1 }, { - "Rank": 2, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "CommandName": "Move-PnPFolder", - "Id": 930 + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Id": 930, + "Rank": 2 }, { - "Rank": 1, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 931 + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Id": 931, + "Rank": 1 }, { - "Rank": 1, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "CommandName": "Move-PnPPageComponent", - "Id": 932 + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "Id": 932, + "Rank": 1 }, { - "Rank": 2, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "CommandName": "Move-PnPPageComponent", - "Id": 933 + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "Id": 933, + "Rank": 2 }, { - "Rank": 3, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "CommandName": "Move-PnPPageComponent", - "Id": 934 + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "Id": 934, + "Rank": 3 }, { - "Rank": 4, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "CommandName": "Move-PnPPageComponent", - "Id": 935 + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Id": 935, + "Rank": 4 }, { - "Rank": 1, - "Command": "Move-PnPRecycleBinItem", "CommandName": "Move-PnpRecycleBinItem", - "Id": 936 + "Command": "Move-PnPRecycleBinItem", + "Id": 936, + "Rank": 1 }, { - "Rank": 2, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "CommandName": "Move-PnpRecycleBinItem", - "Id": 937 + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Id": 937, + "Rank": 2 }, { - "Rank": 3, - "Command": "Move-PnPRecycleBinItem -Force", "CommandName": "Move-PnpRecycleBinItem", - "Id": 938 + "Command": "Move-PnPRecycleBinItem -Force", + "Id": 938, + "Rank": 3 }, { - "Rank": 1, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", "CommandName": "Move-PnPTerm", - "Id": 939 + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", + "Id": 939, + "Rank": 1 }, { - "Rank": 2, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "CommandName": "Move-PnPTerm", - "Id": 940 + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "Id": 940, + "Rank": 2 }, { - "Rank": 3, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "CommandName": "Move-PnPTerm", - "Id": 941 + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "Id": 941, + "Rank": 3 }, { - "Rank": 1, - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", "CommandName": "Move-PnPTermSet", - "Id": 942 + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", + "Id": 942, + "Rank": 1 }, { - "Rank": 2, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "CommandName": "Move-PnPTermSet", - "Id": 943 + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Id": 943, + "Rank": 2 }, { - "Rank": 1, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPAzureADGroup", - "Id": 944 + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 944, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "CommandName": "New-PnPAzureADGroup", - "Id": 945 + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "Id": 945, + "Rank": 2 }, { - "Rank": 3, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "CommandName": "New-PnPAzureADGroup", - "Id": 946 + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Id": 946, + "Rank": 3 }, { - "Rank": 1, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 947 + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Id": 947, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 948 + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "Id": 948, + "Rank": 2 }, { - "Rank": 3, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 949 + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "Id": 949, + "Rank": 3 }, { - "Rank": 1, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "CommandName": "New-PnPAzureCertificate", - "Id": 950 + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Id": 950, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "CommandName": "New-PnPAzureCertificate", - "Id": 951 + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "Id": 951, + "Rank": 2 }, { - "Rank": 3, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "CommandName": "New-PnPAzureCertificate", - "Id": 952 + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Id": 952, + "Rank": 3 }, { - "Rank": 4, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", "CommandName": "New-PnPAzureCertificate", - "Id": 953 + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", + "Id": 953, + "Rank": 4 }, { - "Rank": 1, - "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"", "CommandName": "New-PnPContainerType", - "Id": 954 + "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"", + "Id": 954, + "Rank": 1 }, { - "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()", "CommandName": "New-PnPGraphSubscription", - "Id": 955 + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 955, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "CommandName": "New-PnPGraphSubscription", - "Id": 956 + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 956, + "Rank": 2 }, { - "Rank": 1, - "Command": "New-PnPGroup -Title \"My Site Users\"", "CommandName": "New-PnPGroup", - "Id": 957 + "Command": "New-PnPGroup -Title \"My Site Users\"", + "Id": 957, + "Rank": 1 }, { - "Rank": 1, - "Command": "New-PnPList -Title Announcements -Template Announcements", "CommandName": "New-PnPList", - "Id": 958 + "Command": "New-PnPList -Title Announcements -Template Announcements", + "Id": 958, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "CommandName": "New-PnPList", - "Id": 959 + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Id": 959, + "Rank": 2 }, { - "Rank": 3, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "CommandName": "New-PnPList", - "Id": 960 + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Id": 960, + "Rank": 3 }, { - "Rank": 1, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPMicrosoft365Group", - "Id": 961 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 961, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 962 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "Id": 962, + "Rank": 2 }, { - "Rank": 3, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Id": 963 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "Id": 963, + "Rank": 3 }, { - "Rank": 4, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Id": 964 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "Id": 964, + "Rank": 4 }, { - "Rank": 5, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPMicrosoft365Group", - "Id": 965 + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 965, + "Rank": 5 }, { - "Rank": 6, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 966 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 966, + "Rank": 6 }, { - "Rank": 7, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 967 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "Id": 967, + "Rank": 7 }, { - "Rank": 1, - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 968 + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", + "Id": 968, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 969 + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "Id": 969, + "Rank": 2 }, { - "Rank": 1, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "CommandName": "New-PnPPersonalSite", - "Id": 970 + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Id": 970, + "Rank": 1 }, { - "Rank": 1, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "CommandName": "New-PnPPlannerPlan", - "Id": 971 + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Id": 971, + "Rank": 1 }, { - "Rank": 1, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "CommandName": "New-PnPSdnProvider", - "Id": 972 + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Id": 972, + "Rank": 1 }, { - "Rank": 1, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Id": 973 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Id": 973, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "CommandName": "New-PnPSite", - "Id": 974 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "Id": 974, + "Rank": 2 }, { - "Rank": 3, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "CommandName": "New-PnPSite", - "Id": 975 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 975, + "Rank": 3 }, { - "Rank": 4, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Id": 976 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 976, + "Rank": 4 }, { - "Rank": 5, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Id": 977 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 977, + "Rank": 5 }, { - "Rank": 6, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 978 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Id": 978, + "Rank": 6 }, { - "Rank": 7, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "CommandName": "New-PnPSite", - "Id": 979 + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Id": 979, + "Rank": 7 }, { - "Rank": 8, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "CommandName": "New-PnPSite", - "Id": 980 + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "Id": 980, + "Rank": 8 }, { - "Rank": 9, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 981 + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "Id": 981, + "Rank": 9 }, { - "Rank": 10, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "CommandName": "New-PnPSite", - "Id": 982 + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "Id": 982, + "Rank": 10 }, { - "Rank": 11, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Id": 983 + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Id": 983, + "Rank": 11 }, { - "Rank": 12, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "CommandName": "New-PnPSite", - "Id": 984 + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 984, + "Rank": 12 }, { - "Rank": 13, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Id": 985 + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 985, + "Rank": 13 }, { - "Rank": 14, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Id": 986 + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 986, + "Rank": 14 }, { - "Rank": 15, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 987 + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Id": 987, + "Rank": 15 }, { - "Rank": 16, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "CommandName": "New-PnPSite", - "Id": 988 + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Id": 988, + "Rank": 16 }, { - "Rank": 1, - "Command": "New-PnPSiteCollectionTermStore", "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 989 + "Command": "New-PnPSiteCollectionTermStore", + "Id": 989, + "Rank": 1 }, { - "Rank": 1, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "CommandName": "New-PnPSiteGroup", - "Id": 990 + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "Id": 990, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "CommandName": "New-PnPSiteGroup", - "Id": 991 + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Id": 991, + "Rank": 2 }, { - "Rank": 1, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 992 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Id": 992, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 993 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Id": 993, + "Rank": 2 }, { - "Rank": 3, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 994 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "Id": 994, + "Rank": 3 }, { - "Rank": 4, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 995 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "Id": 995, + "Rank": 4 }, { - "Rank": 5, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 996 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "Id": 996, + "Rank": 5 }, { - "Rank": 6, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 997 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 997, + "Rank": 6 }, { - "Rank": 7, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 998 + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Id": 998, + "Rank": 7 }, { - "Rank": 8, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 999 + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Id": 999, + "Rank": 8 }, { - "Rank": 1, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "CommandName": "New-PnPTeamsApp", - "Id": 1000 + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Id": 1000, + "Rank": 1 }, { - "Rank": 1, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "CommandName": "New-PnPTeamsTeam", - "Id": 1001 + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Id": 1001, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPTeamsTeam -GroupId $groupId", "CommandName": "New-PnPTeamsTeam", - "Id": 1002 + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Id": 1002, + "Rank": 2 }, { - "Rank": 3, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "CommandName": "New-PnPTeamsTeam", - "Id": 1003 + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "Id": 1003, + "Rank": 3 }, { - "Rank": 4, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPTeamsTeam", - "Id": 1004 + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 1004, + "Rank": 4 }, { - "Rank": 5, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", "CommandName": "New-PnPTeamsTeam", - "Id": 1005 + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", + "Id": 1005, + "Rank": 5 }, { - "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\"", "CommandName": "New-PnPTeamsTeam", - "Id": 1006 + "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": 1006, + "Rank": 6 }, { - "Rank": 1, - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", "CommandName": "New-PnPTenantSite", - "Id": 1007 + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 1007, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "CommandName": "New-PnPTenantSite", - "Id": 1008 + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 1008, + "Rank": 2 }, { - "Rank": 1, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "CommandName": "New-PnPTerm", - "Id": 1009 + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Id": 1009, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "New-PnPTerm", - "Id": 1010 + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1010, + "Rank": 2 }, { - "Rank": 1, - "Command": "New-PnPTermGroup -GroupName \"Countries\"", "CommandName": "New-PnPTermGroup", - "Id": 1011 + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Id": 1011, + "Rank": 1 }, { - "Rank": 1, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "CommandName": "New-PnPTermLabel", - "Id": 1012 + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "Id": 1012, + "Rank": 1 }, { - "Rank": 1, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "CommandName": "New-PnPTermSet", - "Id": 1013 + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "Id": 1013, + "Rank": 1 }, { - "Rank": 1, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "CommandName": "New-PnPUPABulkImportJob", - "Id": 1014 + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "Id": 1014, + "Rank": 1 }, { - "Rank": 2, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", "CommandName": "New-PnPUPABulkImportJob", - "Id": 1015 + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", + "Id": 1015, + "Rank": 2 }, { - "Rank": 1, - "Command": "New-PnPUser -LoginName user@company.com", "CommandName": "New-PnPUser", - "Id": 1016 + "Command": "New-PnPUser -LoginName user@company.com", + "Id": 1016, + "Rank": 1 }, { - "Rank": 1, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "CommandName": "New-PnPWeb", - "Id": 1017 + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "Id": 1017, + "Rank": 1 }, { - "Rank": 1, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Publish-PnPApp", - "Id": 1018 + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 1018, + "Rank": 1 }, { - "Rank": 2, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "CommandName": "Publish-PnPApp", - "Id": 1019 + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "Id": 1019, + "Rank": 2 }, { - "Rank": 1, - "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", "CommandName": "Publish-PnPCompanyApp", - "Id": 1020 + "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": 1020, + "Rank": 1 }, { - "Rank": 1, - "Command": "Publish-PnPContentType -ContentType 0x0101", "CommandName": "Publish-PnPContentType", - "Id": 1021 + "Command": "Publish-PnPContentType -ContentType 0x0101", + "Id": 1021, + "Rank": 1 }, { - "Rank": 1, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Publish-PnPSyntexModel", - "Id": 1022 + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 1022, + "Rank": 1 }, { - "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", "CommandName": "Publish-PnPSyntexModel", - "Id": 1023 + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 1023, + "Rank": 2 }, { - "Rank": 1, - "Command": "Read-PnPSiteTemplate -Path template.pnp", "CommandName": "Read-PnPSiteTemplate", - "Id": 1024 + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Id": 1024, + "Rank": 1 }, { - "Rank": 2, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "CommandName": "Read-PnPSiteTemplate", - "Id": 1025 + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Id": 1025, + "Rank": 2 }, { - "Rank": 3, - "Command": "Read-PnPSiteTemplate -Xml $xml", "CommandName": "Read-PnPSiteTemplate", - "Id": 1026 + "Command": "Read-PnPSiteTemplate -Xml $xml", + "Id": 1026, + "Rank": 3 }, { - "Rank": 1, - "Command": "Read-PnPTenantTemplate -Path template.pnp", "CommandName": "Read-PnPTenantTemplate", - "Id": 1027 + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Id": 1027, + "Rank": 1 }, { - "Rank": 1, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "CommandName": "Register-PnPAppCatalogSite", - "Id": 1028 + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "Id": 1028, + "Rank": 1 }, { - "Rank": 1, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", "CommandName": "Register-PnPAzureADApp", - "Id": 1029 + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "Id": 1029, + "Rank": 1 }, { - "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\")", "CommandName": "Register-PnPAzureADApp", - "Id": 1030 + "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": 1030, + "Rank": 2 }, { - "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\")", "CommandName": "Register-PnPAzureADApp", - "Id": 1031 + "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": 1031, + "Rank": 3 }, { - "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\")", "CommandName": "Register-PnPAzureADApp", - "Id": 1032 + "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": 1032, + "Rank": 4 }, { - "Rank": 5, - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "CommandName": "Register-PnPAzureADApp", - "Id": 1033 + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "Id": 1033, + "Rank": 5 }, { - "Rank": 6, - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "CommandName": "Register-PnPAzureADApp", - "Id": 1034 + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "Id": 1034, + "Rank": 6 }, { - "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", "CommandName": "Register-PnPAzureADApp", - "Id": 1035 + "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": 1035, + "Rank": 7 }, { - "Rank": 1, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Register-PnPHubSite", - "Id": 1036 + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1036, + "Rank": 1 }, { - "Rank": 2, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "CommandName": "Register-PnPHubSite", - "Id": 1037 + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Id": 1037, + "Rank": 2 }, { - "Rank": 1, - "Command": "Register-PnPManagementShellAccess", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1038 + "Command": "Register-PnPManagementShellAccess", + "Id": 1038, + "Rank": 1 }, { - "Rank": 2, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1039 + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Id": 1039, + "Rank": 2 }, { - "Rank": 3, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1040 + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Id": 1040, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1041 + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Id": 1041, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1042 + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Id": 1042, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "CommandName": "Remove-PnPAlert", - "Id": 1043 + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "Id": 1043, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAlert", - "Id": 1044 + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 1044, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Remove-PnPApp", - "Id": 1045 + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1045, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Remove-PnPApp", - "Id": 1046 + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1046, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1047 + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1047, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1048 + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1048, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1049 + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Id": 1049, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1050 + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1050, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPAzureADApp -Identity MyApp", "CommandName": "Remove-PnPAzureADApp", - "Id": 1051 + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Id": 1051, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Remove-PnPAzureADApp", - "Id": 1052 + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 1052, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPAzureADGroup -Identity $groupId", "CommandName": "Remove-PnPAzureADGroup", - "Id": 1053 + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Id": 1053, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPAzureADGroup -Identity $group", "CommandName": "Remove-PnPAzureADGroup", - "Id": 1054 + "Command": "Remove-PnPAzureADGroup -Identity $group", + "Id": 1054, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1055 + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1055, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1056 + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1056, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1057 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "Id": 1057, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1058 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Id": 1058, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1059 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 1059, + "Rank": 3 }, { - "Rank": 4, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1060 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 1060, + "Rank": 4 }, { - "Rank": 1, - "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "CommandName": "Remove-PnPContainer", - "Id": 1061 + "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "Id": 1061, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", "CommandName": "Remove-PnPContainer", - "Id": 1062 + "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", + "Id": 1062, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6", "CommandName": "Remove-PnPContainerType", - "Id": 1063 + "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6", + "Id": 1063, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPContentType -Identity \"Project Document\"", "CommandName": "Remove-PnPContentType", - "Id": 1064 + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Id": 1064, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "CommandName": "Remove-PnPContentType", - "Id": 1065 + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Id": 1065, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1066 + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 1066, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1067 + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 1067, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1068 + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Id": 1068, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPCustomAction", - "Id": 1069 + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1069, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPCustomAction", - "Id": 1070 + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1070, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "CommandName": "Remove-PnPCustomAction", - "Id": 1071 + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Id": 1071, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1072 + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1072, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Id": 1073 + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1073, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Id": 1074 + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1074, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "CommandName": "Remove-PnPEventReceiver", - "Id": 1075 + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Id": 1075, + "Rank": 3 }, { - "Rank": 4, - "Command": "Remove-PnPEventReceiver -List ProjectList", "CommandName": "Remove-PnPEventReceiver", - "Id": 1076 + "Command": "Remove-PnPEventReceiver -List ProjectList", + "Id": 1076, + "Rank": 4 }, { - "Rank": 5, - "Command": "Remove-PnPEventReceiver", "CommandName": "Remove-PnPEventReceiver", - "Id": 1077 + "Command": "Remove-PnPEventReceiver", + "Id": 1077, + "Rank": 5 }, { - "Rank": 6, - "Command": "Remove-PnPEventReceiver -Scope Site", "CommandName": "Remove-PnPEventReceiver", - "Id": 1078 + "Command": "Remove-PnPEventReceiver -Scope Site", + "Id": 1078, + "Rank": 6 }, { - "Rank": 7, - "Command": "Remove-PnPEventReceiver -Scope Web", "CommandName": "Remove-PnPEventReceiver", - "Id": 1079 + "Command": "Remove-PnPEventReceiver -Scope Web", + "Id": 1079, + "Rank": 7 }, { - "Rank": 8, - "Command": "Remove-PnPEventReceiver -Scope All", "CommandName": "Remove-PnPEventReceiver", - "Id": 1080 + "Command": "Remove-PnPEventReceiver -Scope All", + "Id": 1080, + "Rank": 8 }, { - "Rank": 1, - "Command": "Remove-PnPField -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Id": 1081 + "Command": "Remove-PnPField -Identity \"Speakers\"", + "Id": 1081, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Id": 1082 + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 1082, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1083 + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 1083, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1084 + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Id": 1084, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Id": 1085 + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Id": 1085, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Id": 1086 + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Id": 1086, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "CommandName": "Remove-PnPFile", - "Id": 1087 + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Id": 1087, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1088 + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Id": 1088, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Remove-PnPFileSharingLink", - "Id": 1089 + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 1089, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "CommandName": "Remove-PnPFileSharingLink", - "Id": 1090 + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Id": 1090, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Remove-PnPFileVersion", - "Id": 1091 + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1091, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Remove-PnPFileVersion", - "Id": 1092 + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1092, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "CommandName": "Remove-PnPFileVersion", - "Id": 1093 + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "Id": 1093, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "CommandName": "Remove-PnPFlowOwner", - "Id": 1094 + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "Id": 1094, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "CommandName": "Remove-PnPFlowOwner", - "Id": 1095 + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "Id": 1095, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "CommandName": "Remove-PnPFlowOwner", - "Id": 1096 + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "Id": 1096, + "Rank": 3 }, { - "Rank": 4, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "CommandName": "Remove-PnPFlowOwner", - "Id": 1097 + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "Id": 1097, + "Rank": 4 }, { - "Rank": 1, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Remove-PnPFolder", - "Id": 1098 + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 1098, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "CommandName": "Remove-PnPFolder", - "Id": 1099 + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Id": 1099, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1100 + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 1100, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1101 + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Id": 1101, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "CommandName": "Remove-PnPGraphSubscription", - "Id": 1102 + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Id": 1102, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPGroup -Identity \"My Users\"", "CommandName": "Remove-PnPGroup", - "Id": 1103 + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Id": 1103, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Remove-PnPGroupMember", - "Id": 1104 + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 1104, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPHomeSite", "CommandName": "Remove-PnPHomeSite", - "Id": 1105 + "Command": "Remove-PnPHomeSite", + "Id": 1105, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1106 + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1106, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1107 + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Id": 1107, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1108 + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Id": 1108, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "CommandName": "Remove-PnPIndexedProperty", - "Id": 1109 + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Id": 1109, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1110 + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Id": 1110, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1111 + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Id": 1111, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1112 + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Id": 1112, + "Rank": 3 }, { - "Rank": 4, - "Command": "Remove-PnPJavaScriptLink -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1113 + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Id": 1113, + "Rank": 4 }, { - "Rank": 5, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1114 + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Id": 1114, + "Rank": 5 }, { - "Rank": 1, - "Command": "Remove-PnPKnowledgeHubSite", "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1115 + "Command": "Remove-PnPKnowledgeHubSite", + "Id": 1115, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPList -Identity Announcements", "CommandName": "Remove-PnPList", - "Id": 1116 + "Command": "Remove-PnPList -Identity Announcements", + "Id": 1116, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPList -Identity Announcements -Force", "CommandName": "Remove-PnPList", - "Id": 1117 + "Command": "Remove-PnPList -Identity Announcements -Force", + "Id": 1117, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPList -Identity Announcements -Recycle", "CommandName": "Remove-PnPList", - "Id": 1118 + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Id": 1118, + "Rank": 3 }, { - "Rank": 4, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "CommandName": "Remove-PnPList", - "Id": 1119 + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Id": 1119, + "Rank": 4 }, { - "Rank": 1, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPListDesign", - "Id": 1120 + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1120, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Remove-PnPListItem", - "Id": 1121 + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Id": 1121, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "CommandName": "Remove-PnPListItem", - "Id": 1122 + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Id": 1122, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPListItem -List \"Demo List\"", "CommandName": "Remove-PnPListItem", - "Id": 1123 + "Command": "Remove-PnPListItem -List \"Demo List\"", + "Id": 1123, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1124 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "Id": 1124, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1125 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "Id": 1125, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1126 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "Id": 1126, + "Rank": 3 }, { - "Rank": 4, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1127 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Id": 1127, + "Rank": 4 }, { - "Rank": 5, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1128 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Id": 1128, + "Rank": 5 }, { - "Rank": 1, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Remove-PnPListItemVersion", - "Id": 1129 + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1129, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Remove-PnPListItemVersion", - "Id": 1130 + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1130, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1131 + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Id": 1131, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPMicrosoft365Group -Identity $group", "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1132 + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Id": 1132, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1133 + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1133, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1134 + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1134, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", "CommandName": "Remove-PnPMicrosoft365GroupPhoto", - "Id": 1135 + "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", + "Id": 1135, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1136 + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Id": 1136, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1137 + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Id": 1137, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPNavigationNode -Identity 1032", "CommandName": "Remove-PnPNavigationNode", - "Id": 1138 + "Command": "Remove-PnPNavigationNode -Identity 1032", + "Id": 1138, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "CommandName": "Remove-PnPNavigationNode", - "Id": 1139 + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Id": 1139, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "CommandName": "Remove-PnPNavigationNode", - "Id": 1140 + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Id": 1140, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1141 + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Id": 1141, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1142 + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Id": 1142, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1143 + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Id": 1143, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1144 + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1144, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPPage -Identity \"MyPage\"", "CommandName": "Remove-PnPPage", - "Id": 1145 + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Id": 1145, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "CommandName": "Remove-PnPPage", - "Id": 1146 + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Id": 1146, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPPage $page", "CommandName": "Remove-PnPPage", - "Id": 1147 + "Command": "Remove-PnPPage $page", + "Id": 1147, + "Rank": 3 }, { - "Rank": 4, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "CommandName": "Remove-PnPPage", - "Id": 1148 + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Id": 1148, + "Rank": 4 }, { - "Rank": 1, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPPageComponent", - "Id": 1149 + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1149, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "CommandName": "Remove-PnPPlannerBucket", - "Id": 1150 + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Id": 1150, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "CommandName": "Remove-PnPPlannerPlan", - "Id": 1151 + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Id": 1151, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Remove-PnPPlannerRoster", - "Id": 1152 + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 1152, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1153 + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1153, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "CommandName": "Remove-PnPPlannerTask", - "Id": 1154 + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Id": 1154, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPPropertyBagValue -Key MyKey", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1155 + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Id": 1155, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1156 + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Id": 1156, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1157 + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Id": 1157, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1158 + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 1158, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "CommandName": "Remove-PnPRoleDefinition", - "Id": 1159 + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Id": 1159, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPSdnProvider -Confirm:false", "CommandName": "Remove-PnPSdnProvider", - "Id": 1160 + "Command": "Remove-PnPSdnProvider -Confirm:false", + "Id": 1160, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPSearchConfiguration -Configuration $config", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1161 + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Id": 1161, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1162 + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1162, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1163 + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1163, + "Rank": 3 }, { - "Rank": 4, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1164 + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1164, + "Rank": 4 }, { - "Rank": 1, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1165 + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1165, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1166 + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1166, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1167 + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 1167, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPSiteCollectionTermStore", "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1168 + "Command": "Remove-PnPSiteCollectionTermStore", + "Id": 1168, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesign", - "Id": 1169 + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1169, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1170 + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1170, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Remove-PnPSiteGroup", - "Id": 1171 + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1171, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "CommandName": "Remove-PnPSiteGroup", - "Id": 1172 + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Id": 1172, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteScript", - "Id": 1173 + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1173, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1174 + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 1174, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPStorageEntity -Key MyKey", "CommandName": "Remove-PnPStorageEntity", - "Id": 1175 + "Command": "Remove-PnPStorageEntity -Key MyKey", + "Id": 1175, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Remove-PnPStorageEntity", - "Id": 1176 + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 1176, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "CommandName": "Remove-PnPStoredCredential", - "Id": 1177 + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Id": 1177, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1178 + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Id": 1178, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1179 + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Id": 1179, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "CommandName": "Remove-PnPTeamsApp", - "Id": 1180 + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Id": 1180, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "CommandName": "Remove-PnPTeamsApp", - "Id": 1181 + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Id": 1181, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "CommandName": "Remove-PnPTeamsChannel", - "Id": 1182 + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "Id": 1182, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1183 + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "Id": 1183, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1184 + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 1184, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1185 + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "Id": 1185, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Id": 1186 + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "Id": 1186, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Id": 1187 + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "Id": 1187, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "CommandName": "Remove-PnPTeamsTab", - "Id": 1188 + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", + "Id": 1188, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Remove-PnPTeamsTag", - "Id": 1189 + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 1189, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Remove-PnPTeamsTeam", - "Id": 1190 + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 1190, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTeamsTeam -Identity testteam", "CommandName": "Remove-PnPTeamsTeam", - "Id": 1191 + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Id": 1191, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "CommandName": "Remove-PnPTeamsUser", - "Id": 1192 + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Id": 1192, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Remove-PnPTeamsUser", - "Id": 1193 + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1193, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1194 + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 1194, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1195 + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1195, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1196 + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1196, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantSite", - "Id": 1197 + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1197, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Id": 1198 + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "Id": 1198, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Id": 1199 + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Id": 1199, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPTenantSyncClientRestriction", "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1200 + "Command": "Remove-PnPTenantSyncClientRestriction", + "Id": 1200, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Remove-PnPTenantTheme", - "Id": 1201 + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 1201, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTerm", - "Id": 1202 + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1202, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTerm", - "Id": 1203 + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1203, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTermGroup", - "Id": 1204 + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1204, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "CommandName": "Remove-PnPTermGroup", - "Id": 1205 + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Id": 1205, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "CommandName": "Remove-PnPTermGroup", - "Id": 1206 + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Id": 1206, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "CommandName": "Remove-PnPTermLabel", - "Id": 1207 + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "Id": 1207, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTermLabel", - "Id": 1208 + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1208, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPUser -Identity 23", "CommandName": "Remove-PnPUser", - "Id": 1209 + "Command": "Remove-PnPUser -Identity 23", + "Id": 1209, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "CommandName": "Remove-PnPUser", - "Id": 1210 + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "Id": 1210, + "Rank": 2 }, { - "Rank": 3, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "CommandName": "Remove-PnPUser", - "Id": 1211 + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "Id": 1211, + "Rank": 3 }, { - "Rank": 1, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Remove-PnPUserInfo", - "Id": 1212 + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Id": 1212, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "CommandName": "Remove-PnPUserProfile", - "Id": 1213 + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Id": 1213, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "CommandName": "Remove-PnPView", - "Id": 1214 + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Id": 1214, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1215 + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 1215, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPWeb -Identity projectA", "CommandName": "Remove-PnPWeb", - "Id": 1216 + "Command": "Remove-PnPWeb -Identity projectA", + "Id": 1216, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "CommandName": "Remove-PnPWeb", - "Id": 1217 + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Id": 1217, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1218 + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "Id": 1218, + "Rank": 1 }, { - "Rank": 1, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPWebPart", - "Id": 1219 + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1219, + "Rank": 1 }, { - "Rank": 2, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "CommandName": "Remove-PnPWebPart", - "Id": 1220 + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Id": 1220, + "Rank": 2 }, { - "Rank": 1, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "CommandName": "Remove-PnPWikiPage", - "Id": 1221 + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Id": 1221, + "Rank": 1 }, { - "Rank": 1, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Id": 1222 + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Id": 1222, + "Rank": 1 }, { - "Rank": 2, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Id": 1223 + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "Id": 1223, + "Rank": 2 }, { - "Rank": 3, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "CommandName": "Rename-PnPFile", - "Id": 1224 + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Id": 1224, + "Rank": 3 }, { - "Rank": 1, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "CommandName": "Rename-PnPFolder", - "Id": 1225 + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Id": 1225, + "Rank": 1 }, { - "Rank": 1, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Repair-PnPSite", - "Id": 1226 + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1226, + "Rank": 1 }, { - "Rank": 2, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Repair-PnPSite", - "Id": 1227 + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1227, + "Rank": 2 }, { - "Rank": 1, - "Command": "Request-PnPAccessToken", "CommandName": "Request-PnPAccessToken", - "Id": 1228 + "Command": "Request-PnPAccessToken", + "Id": 1228, + "Rank": 1 }, { - "Rank": 2, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "CommandName": "Request-PnPAccessToken", - "Id": 1229 + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Id": 1229, + "Rank": 2 }, { - "Rank": 3, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "CommandName": "Request-PnPAccessToken", - "Id": 1230 + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "Id": 1230, + "Rank": 3 }, { - "Rank": 4, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "CommandName": "Request-PnPAccessToken", - "Id": 1231 + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "Id": 1231, + "Rank": 4 }, { - "Rank": 1, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "CommandName": "Request-PnPPersonalSite", - "Id": 1232 + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Id": 1232, + "Rank": 1 }, { - "Rank": 2, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "CommandName": "Request-PnPPersonalSite", - "Id": 1233 + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Id": 1233, + "Rank": 2 }, { - "Rank": 1, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "CommandName": "Request-PnPReIndexList", - "Id": 1234 + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Id": 1234, + "Rank": 1 }, { - "Rank": 1, - "Command": "Request-PnPReIndexWeb", "CommandName": "Request-PnPReIndexWeb", - "Id": 1235 + "Command": "Request-PnPReIndexWeb", + "Id": 1235, + "Rank": 1 }, { - "Rank": 1, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1236 + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Id": 1236, + "Rank": 1 }, { - "Rank": 2, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1237 + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Id": 1237, + "Rank": 2 }, { - "Rank": 3, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1238 + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Id": 1238, + "Rank": 3 }, { - "Rank": 1, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "CommandName": "Reset-PnPFileVersion", - "Id": 1239 + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "Id": 1239, + "Rank": 1 }, { - "Rank": 2, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "CommandName": "Reset-PnPFileVersion", - "Id": 1240 + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Id": 1240, + "Rank": 2 }, { - "Rank": 1, - "Command": "Reset-PnPLabel -List \"Demo List\"", "CommandName": "Reset-PnPLabel", - "Id": 1241 + "Command": "Reset-PnPLabel -List \"Demo List\"", + "Id": 1241, + "Rank": 1 }, { - "Rank": 2, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "CommandName": "Reset-PnPLabel", - "Id": 1242 + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Id": 1242, + "Rank": 2 }, { - "Rank": 1, - "Command": "Reset-PnPMicrosoft365GroupExpiration", "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1243 + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1243, + "Rank": 1 }, { - "Rank": 1, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1244 + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Id": 1244, + "Rank": 1 }, { - "Rank": 1, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "CommandName": "Resolve-PnPFolder", - "Id": 1245 + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Id": 1245, + "Rank": 1 }, { - "Rank": 1, - "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "CommandName": "Restore-PnPDeletedContainer", - "Id": 1246 + "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", + "Id": 1246, + "Rank": 1 }, { - "Rank": 1, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1247 + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1247, + "Rank": 1 }, { - "Rank": 1, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Id": 1248 + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1248, + "Rank": 1 }, { - "Rank": 2, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Id": 1249 + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Id": 1249, + "Rank": 2 }, { - "Rank": 3, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Restore-PnPFileVersion", - "Id": 1250 + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1250, + "Rank": 3 }, { - "Rank": 1, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Restore-PnPListItemVersion", - "Id": 1251 + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1251, + "Rank": 1 }, { - "Rank": 2, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Restore-PnPListItemVersion", - "Id": 1252 + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1252, + "Rank": 2 }, { - "Rank": 1, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1253 + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 1253, + "Rank": 1 }, { - "Rank": 1, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1254 + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1254, + "Rank": 1 }, { - "Rank": 2, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1255 + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 1255, + "Rank": 2 }, { - "Rank": 1, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantSite", - "Id": 1256 + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1256, + "Rank": 1 }, { - "Rank": 2, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Restore-PnPTenantSite", - "Id": 1257 + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1257, + "Rank": 2 }, { - "Rank": 3, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "CommandName": "Restore-PnPTenantSite", - "Id": 1258 + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Id": 1258, + "Rank": 3 }, { - "Rank": 1, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1259 + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Id": 1259, + "Rank": 1 }, { - "Rank": 1, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1260 + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1260, + "Rank": 1 }, { - "Rank": 1, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1261 + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1261, + "Rank": 1 }, { - "Rank": 1, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1262 + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 1262, + "Rank": 1 }, { - "Rank": 1, - "Command": "Revoke-PnPUserSession -User user1@contoso.com", "CommandName": "Revoke-PnPUserSession", - "Id": 1263 + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Id": 1263, + "Rank": 1 }, { - "Rank": 1, - "Command": "Save-PnPPageConversionLog", "CommandName": "Save-PnPPageConversionLog", - "Id": 1264 + "Command": "Save-PnPPageConversionLog", + "Id": 1264, + "Rank": 1 }, { - "Rank": 1, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "CommandName": "Save-PnPSiteTemplate", - "Id": 1265 + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Id": 1265, + "Rank": 1 }, { - "Rank": 1, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "CommandName": "Save-PnPTenantTemplate", - "Id": 1266 + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "Id": 1266, + "Rank": 1 }, { - "Rank": 1, - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", "CommandName": "Send-PnPMail", - "Id": 1267 + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Id": 1267, + "Rank": 1 }, { - "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", "CommandName": "Send-PnPMail", - "Id": 1268 + "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": 1268, + "Rank": 2 }, { - "Rank": 3, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "CommandName": "Send-PnPMail", - "Id": 1269 + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Id": 1269, + "Rank": 3 }, { - "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", "CommandName": "Send-PnPMail", - "Id": 1270 + "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": 1270, + "Rank": 4 }, { - "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", "CommandName": "Send-PnPMail", - "Id": 1271 + "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": 1271, + "Rank": 5 }, { - "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\"", "CommandName": "Send-PnPMail", - "Id": 1272 + "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": 1272, + "Rank": 6 }, { - "Rank": 1, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1273 + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Id": 1273, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1274 + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1274, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1275 + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "Id": 1275, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPAppSideLoading -On", "CommandName": "Set-PnPAppSideLoading", - "Id": 1276 + "Command": "Set-PnPAppSideLoading -On", + "Id": 1276, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPAppSideLoading -Off", "CommandName": "Set-PnPAppSideLoading", - "Id": 1277 + "Command": "Set-PnPAppSideLoading -Off", + "Id": 1277, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPAuditing -EnableAll", "CommandName": "Set-PnPAuditing", - "Id": 1278 + "Command": "Set-PnPAuditing -EnableAll", + "Id": 1278, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPAuditing -DisableAll", "CommandName": "Set-PnPAuditing", - "Id": 1279 + "Command": "Set-PnPAuditing -DisableAll", + "Id": 1279, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPAuditing -RetentionTime 7", "CommandName": "Set-PnPAuditing", - "Id": 1280 + "Command": "Set-PnPAuditing -RetentionTime 7", + "Id": 1280, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPAuditing -TrimAuditLog", "CommandName": "Set-PnPAuditing", - "Id": 1281 + "Command": "Set-PnPAuditing -TrimAuditLog", + "Id": 1281, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "CommandName": "Set-PnPAuditing", - "Id": 1282 + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Id": 1282, + "Rank": 5 }, { - "Rank": 1, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1283 + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Id": 1283, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1284 + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Id": 1284, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1285 + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Id": 1285, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Id": 1286 + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1286, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Id": 1287 + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1287, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPAzureADGroup", - "Id": 1288 + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "Id": 1288, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1289 + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "Id": 1289, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1290 + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Id": 1290, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1291 + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Id": 1291, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1292 + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Id": 1292, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1293 + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Id": 1293, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1294 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Id": 1294, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1295 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Id": 1295, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1296 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Id": 1296, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1297 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Id": 1297, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Id": 1298 + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1298, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "CommandName": "Set-PnPContentType", - "Id": 1299 + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "Id": 1299, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Id": 1300 + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1300, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Id": 1301 + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1301, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Id": 1302 + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1302, + "Rank": 5 }, { - "Rank": 1, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1303 + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "Id": 1303, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1304 + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "Id": 1304, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1305 + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Id": 1305, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1306 + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Id": 1306, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1307 + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Id": 1307, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1308 + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Id": 1308, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1309 + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Id": 1309, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1310 + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Id": 1310, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1311 + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Id": 1311, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1312 + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1312, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1313 + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1313, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Id": 1314 + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "Id": 1314, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Id": 1315 + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "Id": 1315, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "CommandName": "Set-PnPField", - "Id": 1316 + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "Id": 1316, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "CommandName": "Set-PnPField", - "Id": 1317 + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "Id": 1317, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "CommandName": "Set-PnPField", - "Id": 1318 + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Id": 1318, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedIn", - "Id": 1319 + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Id": 1319, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "CommandName": "Set-PnPFileCheckedIn", - "Id": 1320 + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Id": 1320, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedOut", - "Id": 1321 + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "Id": 1321, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Id": 1322 + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1322, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Id": 1323 + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1323, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPFolderPermission", - "Id": 1324 + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1324, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPFooter -Enabled:$true", "CommandName": "Set-PnPFooter", - "Id": 1325 + "Command": "Set-PnPFooter -Enabled:$true", + "Id": 1325, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "CommandName": "Set-PnPFooter", - "Id": 1326 + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Id": 1326, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "CommandName": "Set-PnPFooter", - "Id": 1327 + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Id": 1327, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPFooter -LogoUrl \"\"", "CommandName": "Set-PnPFooter", - "Id": 1328 + "Command": "Set-PnPFooter -LogoUrl \"\"", + "Id": 1328, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "CommandName": "Set-PnPGraphSubscription", - "Id": 1329 + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "Id": 1329, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "CommandName": "Set-PnPGroup", - "Id": 1330 + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Id": 1330, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "CommandName": "Set-PnPGroup", - "Id": 1331 + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Id": 1331, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "CommandName": "Set-PnPGroupPermissions", - "Id": 1332 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Id": 1332, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "CommandName": "Set-PnPGroupPermissions", - "Id": 1333 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Id": 1333, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1334 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Id": 1334, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1335 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Id": 1335, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1336 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Id": 1336, + "Rank": 5 }, { - "Rank": 1, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1337 + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Id": 1337, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1338 + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Id": 1338, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "CommandName": "Set-PnPHomePage", - "Id": 1339 + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Id": 1339, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "CommandName": "Set-PnPHomePage", - "Id": 1340 + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Id": 1340, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "CommandName": "Set-PnPHomeSite", - "Id": 1341 + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Id": 1341, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "CommandName": "Set-PnPHomeSite", - "Id": 1342 + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "Id": 1342, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "CommandName": "Set-PnPHubSite", - "Id": 1343 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "Id": 1343, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "CommandName": "Set-PnPHubSite", - "Id": 1344 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "Id": 1344, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "CommandName": "Set-PnPHubSite", - "Id": 1345 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "Id": 1345, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "CommandName": "Set-PnPHubSite", - "Id": 1346 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "Id": 1346, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "CommandName": "Set-PnPHubSite", - "Id": 1347 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "Id": 1347, + "Rank": 5 }, { - "Rank": 6, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "CommandName": "Set-PnPHubSite", - "Id": 1348 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "Id": 1348, + "Rank": 6 }, { - "Rank": 1, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Set-PnPImageListItemColumn", - "Id": 1349 + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "Id": 1349, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "CommandName": "Set-PnPImageListItemColumn", - "Id": 1350 + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Id": 1350, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "CommandName": "Set-PnPIndexedProperties", - "Id": 1351 + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Id": 1351, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1352 + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Id": 1352, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1353 + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Id": 1353, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1354 + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Id": 1354, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "CommandName": "Set-PnPLabel", - "Id": 1355 + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Id": 1355, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "CommandName": "Set-PnPLabel", - "Id": 1356 + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Id": 1356, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "CommandName": "Set-PnPList", - "Id": 1357 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Id": 1357, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "CommandName": "Set-PnPList", - "Id": 1358 + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Id": 1358, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "CommandName": "Set-PnPList", - "Id": 1359 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Id": 1359, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "CommandName": "Set-PnPList", - "Id": 1360 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "Id": 1360, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "CommandName": "Set-PnPList", - "Id": 1361 + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Id": 1361, + "Rank": 5 }, { - "Rank": 6, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "CommandName": "Set-PnPList", - "Id": 1362 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Id": 1362, + "Rank": 6 }, { - "Rank": 7, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "CommandName": "Set-PnPList", - "Id": 1363 + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Id": 1363, + "Rank": 7 }, { - "Rank": 8, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPList", - "Id": 1364 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Id": 1364, + "Rank": 8 }, { - "Rank": 9, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "CommandName": "Set-PnPList", - "Id": 1365 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Id": 1365, + "Rank": 9 }, { - "Rank": 10, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "CommandName": "Set-PnPList", - "Id": 1366 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Id": 1366, + "Rank": 10 }, { - "Rank": 11, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "CommandName": "Set-PnPList", - "Id": 1367 + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Id": 1367, + "Rank": 11 }, { - "Rank": 1, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1368 + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Id": 1368, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1369 + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Id": 1369, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1370 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1370, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1371 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1371, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1372 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1372, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "CommandName": "Set-PnPListItem", - "Id": 1373 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Id": 1373, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "CommandName": "Set-PnPListItem", - "Id": 1374 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Id": 1374, + "Rank": 5 }, { - "Rank": 1, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Set-PnPListItemAsRecord", - "Id": 1375 + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 1375, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "CommandName": "Set-PnPListItemAsRecord", - "Id": 1376 + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Id": 1376, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Id": 1377 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1377, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Id": 1378 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1378, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPListItemPermission", - "Id": 1379 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1379, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "CommandName": "Set-PnPListItemPermission", - "Id": 1380 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Id": 1380, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "CommandName": "Set-PnPListItemPermission", - "Id": 1381 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Id": 1381, + "Rank": 5 }, { - "Rank": 1, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Id": 1382 + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1382, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Id": 1383 + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1383, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1384 + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Id": 1384, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1385 + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Id": 1385, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1386 + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1386, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1387 + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1387, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1388 + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1388, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1389 + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1389, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1390 + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Id": 1390, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1391 + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1391, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1392 + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1392, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1393 + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Id": 1393, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1394 + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1394, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1395 + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1395, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1396 + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Id": 1396, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1397 + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1397, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1398 + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1398, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1399 + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Id": 1399, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1400 + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1400, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1401 + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1401, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1402 + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Id": 1402, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1403 + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Id": 1403, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsRead", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1404 + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1404, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1405 + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Id": 1405, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1406 + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Id": 1406, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1407 + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1407, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1408 + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1408, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1409 + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1409, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1410 + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Id": 1410, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1411 + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Id": 1411, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1412 + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Id": 1412, + "Rank": 5 }, { - "Rank": 6, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1413 + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 1413, + "Rank": 6 }, { - "Rank": 1, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1414 + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Id": 1414, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1415 + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Id": 1415, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPMinimalDownloadStrategy -Off", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1416 + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Id": 1416, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPMinimalDownloadStrategy -On", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1417 + "Command": "Set-PnPMinimalDownloadStrategy -On", + "Id": 1417, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "CommandName": "Set-PnPPage", - "Id": 1418 + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Id": 1418, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "CommandName": "Set-PnPPage", - "Id": 1419 + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Id": 1419, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "CommandName": "Set-PnPPage", - "Id": 1420 + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Id": 1420, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "CommandName": "Set-PnPPage", - "Id": 1421 + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Id": 1421, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "CommandName": "Set-PnPPage", - "Id": 1422 + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Id": 1422, + "Rank": 5 }, { - "Rank": 6, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "CommandName": "Set-PnPPage", - "Id": 1423 + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "Id": 1423, + "Rank": 6 }, { - "Rank": 7, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Set-PnPPage", - "Id": 1424 + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 1424, + "Rank": 7 }, { - "Rank": 8, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "CommandName": "Set-PnPPage", - "Id": 1425 + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Id": 1425, + "Rank": 8 }, { - "Rank": 9, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Set-PnPPage", - "Id": 1426 + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 1426, + "Rank": 9 }, { - "Rank": 10, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Set-PnPPage", - "Id": 1427 + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 1427, + "Rank": 10 }, { - "Rank": 11, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "CommandName": "Set-PnPPage", - "Id": 1428 + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Id": 1428, + "Rank": 11 }, { - "Rank": 1, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "CommandName": "Set-PnPPageTextPart", - "Id": 1429 + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Id": 1429, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "CommandName": "Set-PnPPageWebPart", - "Id": 1430 + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Id": 1430, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "CommandName": "Set-PnPPageWebPart", - "Id": 1431 + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Id": 1431, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "CommandName": "Set-PnPPlannerBucket", - "Id": 1432 + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Id": 1432, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1433 + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Id": 1433, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1434 + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Id": 1434, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "CommandName": "Set-PnPPlannerPlan", - "Id": 1435 + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Id": 1435, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "CommandName": "Set-PnPPlannerTask", - "Id": 1436 + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Id": 1436, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "CommandName": "Set-PnPPlannerTask", - "Id": 1437 + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Id": 1437, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "CommandName": "Set-PnPPlannerTask", - "Id": 1438 + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Id": 1438, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1439 + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1439, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1440 + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Id": 1440, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1441 + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Id": 1441, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1442 + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Id": 1442, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1443 + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Id": 1443, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPRequestAccessEmails -Disabled", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1444 + "Command": "Set-PnPRequestAccessEmails -Disabled", + "Id": 1444, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1445 + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Id": 1445, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "CommandName": "Set-PnPRoleDefinition", - "Id": 1446 + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Id": 1446, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "CommandName": "Set-PnPRoleDefinition", - "Id": 1447 + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Id": 1447, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "CommandName": "Set-PnPRoleDefinition", - "Id": 1448 + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Id": 1448, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "CommandName": "Set-PnPRoleDefinition", - "Id": 1449 + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Id": 1449, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPSearchConfiguration -Configuration $config", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1450 + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Id": 1450, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1451 + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1451, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1452 + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1452, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1453 + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1453, + "Rank": 4 }, { - "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", "CommandName": "Set-PnPSearchExternalItem", - "Id": 1454 + "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": 1454, + "Rank": 1 }, { - "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\"", "CommandName": "Set-PnPSearchExternalItem", - "Id": 1455 + "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": 1455, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Id": 1456 + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Id": 1456, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "CommandName": "Set-PnPSearchSettings", - "Id": 1457 + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Id": 1457, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "CommandName": "Set-PnPSearchSettings", - "Id": 1458 + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Id": 1458, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "CommandName": "Set-PnPSearchSettings", - "Id": 1459 + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Id": 1459, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Id": 1460 + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Id": 1460, + "Rank": 5 }, { - "Rank": 6, - "Command": "Set-PnPSearchSettings -SearchScope Tenant", "CommandName": "Set-PnPSearchSettings", - "Id": 1461 + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Id": 1461, + "Rank": 6 }, { - "Rank": 7, - "Command": "Set-PnPSearchSettings -SearchScope Hub", "CommandName": "Set-PnPSearchSettings", - "Id": 1462 + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Id": 1462, + "Rank": 7 }, { - "Rank": 1, - "Command": "Set-PnPSite -Classification \"HBI\"", "CommandName": "Set-PnPSite", - "Id": 1463 + "Command": "Set-PnPSite -Classification \"HBI\"", + "Id": 1463, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPSite -Classification $null", "CommandName": "Set-PnPSite", - "Id": 1464 + "Command": "Set-PnPSite -Classification $null", + "Id": 1464, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPSite -DisableFlows", "CommandName": "Set-PnPSite", - "Id": 1465 + "Command": "Set-PnPSite -DisableFlows", + "Id": 1465, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPSite -DisableFlows:$false", "CommandName": "Set-PnPSite", - "Id": 1466 + "Command": "Set-PnPSite -DisableFlows:$false", + "Id": 1466, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "CommandName": "Set-PnPSite", - "Id": 1467 + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Id": 1467, + "Rank": 5 }, { - "Rank": 6, - "Command": "Set-PnPSite -NoScriptSite $false", "CommandName": "Set-PnPSite", - "Id": 1468 + "Command": "Set-PnPSite -NoScriptSite $false", + "Id": 1468, + "Rank": 6 }, { - "Rank": 7, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPSite", - "Id": 1469 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Id": 1469, + "Rank": 7 }, { - "Rank": 8, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "CommandName": "Set-PnPSite", - "Id": 1470 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Id": 1470, + "Rank": 8 }, { - "Rank": 9, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "CommandName": "Set-PnPSite", - "Id": 1471 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Id": 1471, + "Rank": 9 }, { - "Rank": 10, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "CommandName": "Set-PnPSite", - "Id": 1472 + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Id": 1472, + "Rank": 10 }, { - "Rank": 11, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1473 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Id": 1473, + "Rank": 11 }, { - "Rank": 12, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1474 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Id": 1474, + "Rank": 12 }, { - "Rank": 13, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1475 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Id": 1475, + "Rank": 13 }, { - "Rank": 14, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1476 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Id": 1476, + "Rank": 14 }, { - "Rank": 15, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1477 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "Id": 1477, + "Rank": 15 }, { - "Rank": 16, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1478 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Id": 1478, + "Rank": 16 }, { - "Rank": 17, - "Command": "Set-PnPSite -CancelVPForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1479 + "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Id": 1479, + "Rank": 17 }, { - "Rank": 1, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "CommandName": "Set-PnPSiteClassification", - "Id": 1480 + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Id": 1480, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPSiteClosure -State Open", "CommandName": "Set-PnPSiteClosure", - "Id": 1481 + "Command": "Set-PnPSiteClosure -State Open", + "Id": 1481, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPSiteClosure -State Closed", "CommandName": "Set-PnPSiteClosure", - "Id": 1482 + "Command": "Set-PnPSiteClosure -State Closed", + "Id": 1482, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "CommandName": "Set-PnPSiteDesign", - "Id": 1483 + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Id": 1483, + "Rank": 1 }, { - "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\"", "CommandName": "Set-PnPSiteDesign", - "Id": 1484 + "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": 1484, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "CommandName": "Set-PnPSiteGroup", - "Id": 1485 + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "Id": 1485, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "CommandName": "Set-PnPSiteGroup", - "Id": 1486 + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Id": 1486, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Set-PnPSitePolicy", - "Id": 1487 + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 1487, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScript", - "Id": 1488 + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1488, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1489 + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1489, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1490 + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Id": 1490, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1491 + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Id": 1491, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1492 + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1492, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1493 + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1493, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1494 + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1494, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1495 + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1495, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1496 + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1496, + "Rank": 5 }, { - "Rank": 6, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1497 + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1497, + "Rank": 6 }, { - "Rank": 1, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Id": 1498 + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1498, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Id": 1499 + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1499, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1500 + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1500, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1501 + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1501, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1502 + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1502, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1503 + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1503, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1504 + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Id": 1504, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1505 + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Id": 1505, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1506 + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Id": 1506, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1507 + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Id": 1507, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1508 + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Id": 1508, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPTeamifyPromptHidden", "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1509 + "Command": "Set-PnPTeamifyPromptHidden", + "Id": 1509, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "CommandName": "Set-PnPTeamsChannel", - "Id": 1510 + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Id": 1510, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "CommandName": "Set-PnPTeamsChannel", - "Id": 1511 + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Id": 1511, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1512 + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "Id": 1512, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1513 + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Id": 1513, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "CommandName": "Set-PnPTeamsTab", - "Id": 1514 + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Id": 1514, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "CommandName": "Set-PnPTeamsTag", - "Id": 1515 + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Id": 1515, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "CommandName": "Set-PnPTeamsTeam", - "Id": 1516 + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Id": 1516, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "CommandName": "Set-PnPTeamsTeam", - "Id": 1517 + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Id": 1517, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "CommandName": "Set-PnPTeamsTeam", - "Id": 1518 + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Id": 1518, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "CommandName": "Set-PnPTeamsTeam", - "Id": 1519 + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Id": 1519, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1520 + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Id": 1520, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1521 + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Id": 1521, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1522 + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Id": 1522, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1523 + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Id": 1523, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPTemporarilyDisableAppBar $true", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1524 + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Id": 1524, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTemporarilyDisableAppBar $false", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1525 + "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Id": 1525, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "CommandName": "Set-PnPTenant", - "Id": 1526 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", + "Id": 1526, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "CommandName": "Set-PnPTenant", - "Id": 1527 + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Id": 1527, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "CommandName": "Set-PnPTenant", - "Id": 1528 + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Id": 1528, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "CommandName": "Set-PnPTenant", - "Id": 1529 + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Id": 1529, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1530 + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Id": 1530, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1531 + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Id": 1531, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1532 + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Id": 1532, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1533 + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Id": 1533, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1534 + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", + "Id": 1534, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1535 + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Id": 1535, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "CommandName": "Set-PnPTenantSite", - "Id": 1536 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Id": 1536, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "CommandName": "Set-PnPTenantSite", - "Id": 1537 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Id": 1537, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPTenantSite", - "Id": 1538 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1538, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Set-PnPTenantSite", - "Id": 1539 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1539, + "Rank": 4 }, { - "Rank": 5, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "CommandName": "Set-PnPTenantSite", - "Id": 1540 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Id": 1540, + "Rank": 5 }, { - "Rank": 1, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1541 + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Id": 1541, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1542 + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Id": 1542, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "CommandName": "Set-PnPTerm", - "Id": 1543 + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Id": 1543, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Id": 1544 + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1544, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Id": 1545 + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1545, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "CommandName": "Set-PnPTerm", - "Id": 1546 + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Id": 1546, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "CommandName": "Set-PnPTermGroup", - "Id": 1547 + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Id": 1547, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "CommandName": "Set-PnPTermSet", - "Id": 1548 + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Id": 1548, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "CommandName": "Set-PnPTermSet", - "Id": 1549 + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Id": 1549, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "CommandName": "Set-PnPTermSet", - "Id": 1550 + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Id": 1550, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPTheme", "CommandName": "Set-PnPTheme", - "Id": 1551 + "Command": "Set-PnPTheme", + "Id": 1551, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "CommandName": "Set-PnPTheme", - "Id": 1552 + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Id": 1552, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "CommandName": "Set-PnPTheme", - "Id": 1553 + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Id": 1553, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "CommandName": "Set-PnPTheme", - "Id": 1554 + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Id": 1554, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "CommandName": "Set-PnPTraceLog", - "Id": 1555 + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Id": 1555, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "CommandName": "Set-PnPTraceLog", - "Id": 1556 + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Id": 1556, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "CommandName": "Set-PnPTraceLog", - "Id": 1557 + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Id": 1557, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPTraceLog -Off", "CommandName": "Set-PnPTraceLog", - "Id": 1558 + "Command": "Set-PnPTraceLog -Off", + "Id": 1558, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1559 + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Id": 1559, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "CommandName": "Set-PnPUserProfileProperty", - "Id": 1560 + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Id": 1560, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "CommandName": "Set-PnPUserProfileProperty", - "Id": 1561 + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Id": 1561, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "CommandName": "Set-PnPView", - "Id": 1562 + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Id": 1562, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "CommandName": "Set-PnPView", - "Id": 1563 + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Id": 1563, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", "CommandName": "Set-PnPView", - "Id": 1564 + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", + "Id": 1564, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "CommandName": "Set-PnPView", - "Id": 1565 + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Id": 1565, + "Rank": 4 }, { - "Rank": 1, - "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", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1566 + "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": 1566, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1567 + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Id": 1567, + "Rank": 2 }, { - "Rank": 3, - "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", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1568 + "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": 1568, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1569 + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Id": 1569, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "CommandName": "Set-PnPWeb", - "Id": 1570 + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Id": 1570, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "CommandName": "Set-PnPWeb", - "Id": 1571 + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Id": 1571, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "CommandName": "Set-PnPWeb", - "Id": 1572 + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Id": 1572, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPWeb -NoCrawl:$true", "CommandName": "Set-PnPWeb", - "Id": 1573 + "Command": "Set-PnPWeb -NoCrawl:$true", + "Id": 1573, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "CommandName": "Set-PnPWebHeader", - "Id": 1574 + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Id": 1574, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "CommandName": "Set-PnPWebHeader", - "Id": 1575 + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Id": 1575, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPWebHeader -LogoAlignment Middle", "CommandName": "Set-PnPWebHeader", - "Id": 1576 + "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Id": 1576, + "Rank": 3 }, { - "Rank": 1, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Set-PnPWebhookSubscription", - "Id": 1577 + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 1577, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "CommandName": "Set-PnPWebhookSubscription", - "Id": 1578 + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Id": 1578, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "CommandName": "Set-PnPWebPartProperty", - "Id": 1579 + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", + "Id": 1579, + "Rank": 1 }, { - "Rank": 1, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1580 + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1580, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1581 + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Id": 1581, + "Rank": 2 }, { - "Rank": 3, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1582 + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1582, + "Rank": 3 }, { - "Rank": 4, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "CommandName": "Set-PnPWebPermission", - "Id": 1583 + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Id": 1583, + "Rank": 4 }, { - "Rank": 1, - "Command": "Set-PnPWebTheme -Theme MyTheme", "CommandName": "Set-PnPWebTheme", - "Id": 1584 + "Command": "Set-PnPWebTheme -Theme MyTheme", + "Id": 1584, + "Rank": 1 }, { - "Rank": 2, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "CommandName": "Set-PnPWebTheme", - "Id": 1585 + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Id": 1585, + "Rank": 2 }, { - "Rank": 1, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "CommandName": "Set-PnPWikiPageContent", - "Id": 1586 + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Id": 1586, + "Rank": 1 }, { - "Rank": 1, - "Command": "Submit-PnPSearchQuery -Query \"finance\"", "CommandName": "Submit-PnPSearchQuery", - "Id": 1587 + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Id": 1587, + "Rank": 1 }, { - "Rank": 2, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "CommandName": "Submit-PnPSearchQuery", - "Id": 1588 + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Id": 1588, + "Rank": 2 }, { - "Rank": 3, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1589 + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Id": 1589, + "Rank": 3 }, { - "Rank": 4, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "CommandName": "Submit-PnPSearchQuery", - "Id": 1590 + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Id": 1590, + "Rank": 4 }, { - "Rank": 5, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1591 + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Id": 1591, + "Rank": 5 }, { - "Rank": 6, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1592 + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "Id": 1592, + "Rank": 6 }, { - "Rank": 1, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1593 + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Id": 1593, + "Rank": 1 }, { - "Rank": 2, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html", "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1594 + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html", + "Id": 1594, + "Rank": 2 }, { - "Rank": 1, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Sync-PnPAppToTeams", - "Id": 1595 + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1595, + "Rank": 1 }, { - "Rank": 1, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1596 + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Id": 1596, + "Rank": 1 }, { - "Rank": 2, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1597 + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Id": 1597, + "Rank": 2 }, { - "Rank": 3, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1598 + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Id": 1598, + "Rank": 3 }, { - "Rank": 1, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "CommandName": "Test-PnPListItemIsRecord", - "Id": 1599 + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Id": 1599, + "Rank": 1 }, { - "Rank": 1, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1600 + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Id": 1600, + "Rank": 1 }, { - "Rank": 1, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Test-PnPSite", - "Id": 1601 + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1601, + "Rank": 1 }, { - "Rank": 2, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Test-PnPSite", - "Id": 1602 + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1602, + "Rank": 2 }, { - "Rank": 1, - "Command": "Test-PnPTenantTemplate -Template $myTemplate", "CommandName": "Test-PnPTenantTemplate", - "Id": 1603 + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Id": 1603, + "Rank": 1 }, { - "Rank": 1, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1604 + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Id": 1604, + "Rank": 1 }, { - "Rank": 1, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Uninstall-PnPApp", - "Id": 1605 + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1605, + "Rank": 1 }, { - "Rank": 2, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Uninstall-PnPApp", - "Id": 1606 + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1606, + "Rank": 2 }, { - "Rank": 1, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Unpublish-PnPApp", - "Id": 1607 + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1607, + "Rank": 1 }, { - "Rank": 2, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Unpublish-PnPApp", - "Id": 1608 + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1608, + "Rank": 2 }, { - "Rank": 1, - "Command": "Unpublish-PnPContentType -ContentType 0x0101", "CommandName": "Unpublish-PnPContentType", - "Id": 1609 + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Id": 1609, + "Rank": 1 }, { - "Rank": 1, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1610 + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 1610, + "Rank": 1 }, { - "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", "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1611 + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 1611, + "Rank": 2 }, { - "Rank": 1, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Unregister-PnPHubSite", - "Id": 1612 + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1612, + "Rank": 1 }, { - "Rank": 1, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Update-PnPApp", - "Id": 1613 + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1613, + "Rank": 1 }, { - "Rank": 2, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Update-PnPApp", - "Id": 1614 + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1614, + "Rank": 2 }, { - "Rank": 1, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1615 + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1615, + "Rank": 1 }, { - "Rank": 2, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1616 + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Id": 1616, + "Rank": 2 }, { - "Rank": 3, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1617 + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 1617, + "Rank": 3 }, { - "Rank": 1, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1618 + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Id": 1618, + "Rank": 1 }, { - "Rank": 2, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1619 + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Id": 1619, + "Rank": 2 }, { - "Rank": 3, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1620 + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Id": 1620, + "Rank": 3 }, { - "Rank": 1, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "CommandName": "Update-PnPTeamsApp", - "Id": 1621 + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Id": 1621, + "Rank": 1 }, { - "Rank": 1, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Update-PnPTeamsUser", - "Id": 1622 + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1622, + "Rank": 1 }, { - "Rank": 2, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Update-PnPTeamsUser", - "Id": 1623 + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 1623, + "Rank": 2 }, { - "Rank": 3, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "CommandName": "Update-PnPTeamsUser", - "Id": 1624 + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Id": 1624, + "Rank": 3 }, { - "Rank": 1, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "CommandName": "Update-PnPUserType", - "Id": 1625 + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Id": 1625, + "Rank": 1 } ] diff --git a/version.txt b/version.txt index 16d83b4e2..53e137588 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.33 \ No newline at end of file +2.3.34 \ No newline at end of file From 9cdcab84ed36ad6e3bc9cd618e3cad86b11fe2e5 Mon Sep 17 00:00:00 2001 From: Dan Cecil <danielcecil@hotmail.com> Date: Tue, 23 Jan 2024 21:01:42 +0000 Subject: [PATCH 46/53] [FEATURE] Get-PnPWebPermissions command for a given PrincipalId (#3685) * Added GetWebPermissions command for a given PrincipalId * Added documentation for GetPnPWebPermissions * Renamed cmd and docs to Get-PnPWebPermission --------- Co-authored-by: Gautam Sheth <gautamdsheth@outlook.com> --- documentation/Get-PnPWebPermission.md | 76 +++++++++++++++++++++++++++ src/Commands/Web/GetWebPermission.cs | 46 ++++++++++++++++ 2 files changed, 122 insertions(+) create mode 100644 documentation/Get-PnPWebPermission.md create mode 100644 src/Commands/Web/GetWebPermission.cs diff --git a/documentation/Get-PnPWebPermission.md b/documentation/Get-PnPWebPermission.md new file mode 100644 index 000000000..380f219f5 --- /dev/null +++ b/documentation/Get-PnPWebPermission.md @@ -0,0 +1,76 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Get-PnPWebPermission.html +external help file: PnP.PowerShell.dll-Help.xml +title: Get-PnPWebPermission +--- + +# Get-PnPWebPermission + +## SYNOPSIS +Returns the explicit permissions for a specific SharePoint Web given a user or group by id. + +## SYNTAX + +```powershell +Get-PnPWebPermission [-Identity] <WebPipeBind> -PrincipalId <Int32> +``` + +## DESCRIPTION + +This cmdlet retrieves the web permissions (role definitions) for a specific user or group in a provided web. + +## EXAMPLES + +### EXAMPLE 1 +```powershell +Get-PnPWebPermission -Identity (Get-PnPWeb) -PrincipalId 60 +``` + +Returns the permissions for the SharePoint group with id for the current Web. + +### EXAMPLE 2 +```powershell +Get-PnPWebPermission -Identity "subsite" -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id +``` + +Returns the permissions for the SharePoint group called DemoGroup for a given subsite path. + +## PARAMETERS + + +### -Identity +The id, name or server relative url of the Web to retrieve the permissions for. + +```yaml +Type: WebPipeBand +Parameter Sets: (All) +Aliases: Name + +Required: False +Position: 0 +Default value: (CurrentWeb) +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PrincipalId +The id of a user or a SharePoint group. See Get-PnPUser and Get-PnPGroup. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: Name + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## RELATED LINKS + +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) diff --git a/src/Commands/Web/GetWebPermission.cs b/src/Commands/Web/GetWebPermission.cs new file mode 100644 index 000000000..55c6dda65 --- /dev/null +++ b/src/Commands/Web/GetWebPermission.cs @@ -0,0 +1,46 @@ +using System.Linq; +using System.Management.Automation; +using Microsoft.SharePoint.Client; + +using PnP.Core.Model.Security; +using PnP.PowerShell.Commands.Base.PipeBinds; + +namespace PnP.PowerShell.Commands.Principals +{ + [Cmdlet(VerbsCommon.Get, "PnPWebPermission")] + [OutputType(typeof(IRoleDefinition))] + public class GetWebPermission : PnPWebCmdlet + { + [Parameter(Mandatory = false, Position = 0, ValueFromPipeline = true, ParameterSetName = "ByName")] + public WebPipeBind Identity; + + [Parameter(Mandatory = true)] + public int PrincipalId; + + protected override void ExecuteCmdlet() + { + + Web web = CurrentWeb; + if (ParameterSpecified(nameof(Identity))) + { + web = Identity.GetWeb(ClientContext); + } + + var roleAssignments = web.RoleAssignments; + web.Context.Load(roleAssignments); + web.Context.ExecuteQueryRetry(); + + RoleAssignment roleAssignment = roleAssignments.FirstOrDefault((RoleAssignment ra) => ra.PrincipalId.Equals(PrincipalId)); + if (roleAssignment != null) + { + web.Context.Load(roleAssignment.RoleDefinitionBindings); + web.Context.ExecuteQueryRetry(); + + if (roleAssignment.RoleDefinitionBindings.Count > 0) + { + WriteObject(roleAssignment.RoleDefinitionBindings, true); + } + } + } + } +} From 0741bdd2947dad6ecabc188e4e1f7d37d43e71c9 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Tue, 23 Jan 2024 22:05:22 +0100 Subject: [PATCH 47/53] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad17fc0f3..855b44d2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `New-PnPContainerType` cmdlet to create a new SharePoint container type. [#3669](https://github.com/pnp/powershell/pull/3669) - Added `Remove-PnPContainerType` cmdlet which removes a specific container type. [#3689](https://github.com/pnp/powershell/pull/3689/) - Added `Restore-PnPDeletedContainer` cmdlet which recovers a deleted Container from the Recycle Bin. [#3661](https://github.com/pnp/powershell/pull/3661) +- Added 'Get-PnPWebPermission' cmdlet which retrieves permission given by user for specific web. (#3685)[https://github.com/pnp/powershell/pull/3685] ### Fixed From 662d2b5c8e918089ef68d3864cc8bc3bdea0f429 Mon Sep 17 00:00:00 2001 From: Gautam Sheth <gautamdsheth@outlook.com> Date: Tue, 23 Jan 2024 22:06:13 +0100 Subject: [PATCH 48/53] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 855b44d2e..0f9782b2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Contributors +- Daniel Cecil [danielcecil] - Rohit Devmore [rohit404404] - Konrad K. [wilecoyotegenius] - Kunj Balkrishna Sangani [kunj-sangani] From fe7a4ac85e2930d0e903c6095f228fb5ac0ffdfa Mon Sep 17 00:00:00 2001 From: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Date: Wed, 24 Jan 2024 02:47:13 +0000 Subject: [PATCH 49/53] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 4770 +++++++++-------- version.txt | 2 +- 3 files changed, 2393 insertions(+), 2381 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index ab5956237..88a92bdf8 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -3c636fe8e6e27a52c87ba916bf7d00862ebce594 \ No newline at end of file +5fdbde61beb5f39bcc1913199ce71ba319cb4d98 \ 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 f4e895507..83c924d0e 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9752 +1,9764 @@ [ { - "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -List \"Demo List\"", "Id": 1, + "CommandName": "Add-PnPAlert", "Rank": 1 }, { - "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)", "Id": 2, + "CommandName": "Add-PnPAlert", "Rank": 2 }, { - "CommandName": "Add-PnPAlert", "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\" -Frequency Daily -Time ((Get-Date).AddDays(1))", "Id": 4, + "CommandName": "Add-PnPAlert", "Rank": 4 }, { - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg", "Id": 5, + "CommandName": "Add-PnPApp", "Rank": 1 }, { - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Id": 6, + "CommandName": "Add-PnPApp", "Rank": 2 }, { - "CommandName": "Add-PnPApp", "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 -Publish -SkipFeatureDeployment", "Id": 8, + "CommandName": "Add-PnPApp", "Rank": 4 }, { - "CommandName": "Add-PnPApplicationCustomizer", "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-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Id": 10, + "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1 }, { - "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Id": 11, + "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2 }, { - "CommandName": "Add-PnPAzureADGroupMember", "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\" -RemoveExisting", "Id": 13, + "CommandName": "Add-PnPAzureADGroupMember", "Rank": 2 }, { - "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 14, + "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3 }, { - "CommandName": "Add-PnPAzureADGroupOwner", "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\" -RemoveExisting", "Id": 16, + "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 2 }, { - "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 17, + "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3 }, { - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "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 \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Id": 19, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 2 }, { - "CommandName": "Add-PnPContentType", "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 (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 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\"", "Id": 23, + "CommandName": "Add-PnPContentType", "Rank": 4 }, { - "CommandName": "Add-PnPContentType", "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-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Id": 25, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1 }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Id": 26, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2 }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 27, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1 }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 28, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2 }, { - "CommandName": "Add-PnPContentTypeToList", "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Id": 29, + "CommandName": "Add-PnPContentTypeToList", "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`\"}\"", "Id": 30, + "CommandName": "Add-PnPCustomAction", "Rank": 1 }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", "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' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity", "Id": 32, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2 }, { - "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Id": 33, + "CommandName": "Add-PnPDocumentSet", "Rank": 1 }, { - "CommandName": "Add-PnPEventReceiver", "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 -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 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 ListDeleted -Synchronization Asynchronous -Scope Web", "Id": 37, + "CommandName": "Add-PnPEventReceiver", "Rank": 4 }, { - "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Id": 38, + "CommandName": "Add-PnPField", "Rank": 1 }, { - "CommandName": "Add-PnPField", "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 \"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\" -Field \"MyTestCol\"", "Id": 41, + "CommandName": "Add-PnPField", "Rank": 4 }, { - "CommandName": "Add-PnPField", "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 Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Id": 43, + "CommandName": "Add-PnPField", "Rank": 6 }, { - "CommandName": "Add-PnPFieldToContentType", "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 44, + "CommandName": "Add-PnPFieldToContentType", "Rank": 1 }, { - "CommandName": "Add-PnPFile", "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 .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Id": 46, + "CommandName": "Add-PnPFile", "Rank": 2 }, { - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", "Id": 47, + "CommandName": "Add-PnPFile", "Rank": 3 }, { - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", "Id": 48, + "CommandName": "Add-PnPFile", "Rank": 4 }, { - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", "Id": 49, + "CommandName": "Add-PnPFile", "Rank": 5 }, { - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", "Id": 50, + "CommandName": "Add-PnPFile", "Rank": 6 }, { - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Id": 51, + "CommandName": "Add-PnPFile", "Rank": 7 }, { - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Id": 52, + "CommandName": "Add-PnPFile", "Rank": 8 }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", "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\" -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 View -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 55, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 3 }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", "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\" -Type Edit", "Id": 57, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2 }, { - "CommandName": "Add-PnPFileSharingInvite", "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 -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 -ExpirationDate (Get-Date).AddDays(15)", "Id": 60, + "CommandName": "Add-PnPFileSharingInvite", "Rank": 3 }, { - "CommandName": "Add-PnPFileToSiteTemplate", "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 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 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 $sourceFilePath -Folder $targetFolder -Container $container", "Id": 64, + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4 }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Id": 65, + "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5 }, { - "CommandName": "Add-PnPFileUserSharingLink", "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\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 67, + "CommandName": "Add-PnPFileUserSharingLink", "Rank": 2 }, { - "CommandName": "Add-PnPFlowOwner", "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 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 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 username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", "Id": 71, + "CommandName": "Add-PnPFlowOwner", "Rank": 4 }, { - "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 72, + "CommandName": "Add-PnPFolder", "Rank": 1 }, { - "CommandName": "Add-PnPFolder", "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/Folder\"", "Id": 74, + "CommandName": "Add-PnPFolder", "Rank": 3 }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", "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\" -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!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 77, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 3 }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "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\" -Type Edit", "Id": 79, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2 }, { - "CommandName": "Add-PnPFolderSharingInvite", "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 -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 -ExpirationDate (Get-Date).AddDays(15)", "Id": 82, + "CommandName": "Add-PnPFolderSharingInvite", "Rank": 3 }, { - "CommandName": "Add-PnPFolderUserSharingLink", "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\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 84, + "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 2 }, { - "CommandName": "Add-PnPGroupMember", "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 5", "Id": 86, + "CommandName": "Add-PnPGroupMember", "Rank": 2 }, { - "CommandName": "Add-PnPHtmlPublishingPageLayout", "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-PnPHubSiteAssociation", "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-PnPHubToHubAssociation", "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 -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/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-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site", "Id": 92, + "CommandName": "Add-PnPJavaScriptBlock", "Rank": 1 }, { - "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'", "Id": 93, + "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2 }, { - "CommandName": "Add-PnPJavaScriptLink", "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", "Id": 95, + "CommandName": "Add-PnPJavaScriptLink", "Rank": 2 }, { - "CommandName": "Add-PnPListDesign", "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 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-PnPListFoldersToSiteTemplate", "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' -Recursive", "Id": 99, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Id": 100, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3 }, { - "CommandName": "Add-PnPListItem", "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\" -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\" -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 @{\"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\"} -Label \"Public\"", "Id": 105, + "CommandName": "Add-PnPListItem", "Rank": 5 }, { - "CommandName": "Add-PnPListItemAttachment", "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 -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.mp4\" -Stream $fileStream", "Id": 108, + "CommandName": "Add-PnPListItemAttachment", "Rank": 3 }, { - "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Id": 109, + "CommandName": "Add-PnPListItemComment", "Rank": 1 }, { - "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Id": 110, + "CommandName": "Add-PnPMasterPage", "Rank": 1 }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", "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\" -RemoveExisting", "Id": 112, + "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 2 }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", "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\" -RemoveExisting", "Id": 114, + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 2 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", "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 -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Id": 116, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Id": 117, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3 }, { - "CommandName": "Add-PnPNavigationNode", "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 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\" -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 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 \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Id": 122, + "CommandName": "Add-PnPNavigationNode", "Rank": 5 }, { - "CommandName": "Add-PnPNavigationNode", "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 \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Id": 124, + "CommandName": "Add-PnPNavigationNode", "Rank": 7 }, { - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Id": 125, + "CommandName": "Add-PnPNavigationNode", "Rank": 8 }, { - "CommandName": "Add-PnPOrgAssetsLibrary", "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\" -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\" -CdnType Private", "Id": 128, + "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3 }, { - "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Id": 129, + "CommandName": "Add-PnPOrgNewsSite", "Rank": 1 }, { - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", "Id": 130, + "CommandName": "Add-PnPPage", "Rank": 1 }, { - "CommandName": "Add-PnPPage", "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\" -ContentType \"MyPageContentType\"", "Id": 132, + "CommandName": "Add-PnPPage", "Rank": 3 }, { - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Id": 133, + "CommandName": "Add-PnPPage", "Rank": 4 }, { - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Id": 134, + "CommandName": "Add-PnPPage", "Rank": 5 }, { - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Id": 135, + "CommandName": "Add-PnPPage", "Rank": 6 }, { - "CommandName": "Add-PnPPage", "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\" -Translate", "Id": 137, + "CommandName": "Add-PnPPage", "Rank": 8 }, { - "CommandName": "Add-PnPPage", "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,1035", "Id": 139, + "CommandName": "Add-PnPPage", "Rank": 10 }, { - "CommandName": "Add-PnPPageImageWebPart", "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\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"", "Id": 141, + "CommandName": "Add-PnPPageImageWebPart", "Rank": 2 }, { - "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Id": 142, + "CommandName": "Add-PnPPageSection", "Rank": 1 }, { - "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Id": 143, + "CommandName": "Add-PnPPageSection", "Rank": 2 }, { - "CommandName": "Add-PnPPageTextPart", "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!\" -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\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "Id": 146, + "CommandName": "Add-PnPPageTextPart", "Rank": 3 }, { - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Id": 147, + "CommandName": "Add-PnPPageWebPart", "Rank": 1 }, { - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Id": 148, + "CommandName": "Add-PnPPageWebPart", "Rank": 2 }, { - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Id": 149, + "CommandName": "Add-PnPPageWebPart", "Rank": 3 }, { - "CommandName": "Add-PnPPlannerBucket", "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 -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Id": 151, + "CommandName": "Add-PnPPlannerBucket", "Rank": 2 }, { - "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", "Id": 152, + "CommandName": "Add-PnPPlannerRoster", "Rank": 1 }, { - "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 153, + "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1 }, { - "CommandName": "Add-PnPPlannerTask", "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 -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 155, + "CommandName": "Add-PnPPlannerTask", "Rank": 2 }, { - "CommandName": "Add-PnPPlannerTask", "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-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 157, + "CommandName": "Add-PnPPublishingImageRendition", "Rank": 1 }, { - "CommandName": "Add-PnPPublishingPage", "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' -Folder '/Pages/folder'", "Id": 159, + "CommandName": "Add-PnPPublishingPage", "Rank": 2 }, { - "CommandName": "Add-PnPPublishingPageLayout", "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-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Id": 161, + "CommandName": "Add-PnPRoleDefinition", "Rank": 1 }, { - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Id": 162, + "CommandName": "Add-PnPRoleDefinition", "Rank": 2 }, { - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Id": 163, + "CommandName": "Add-PnPRoleDefinition", "Rank": 3 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 164, + "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "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 -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Id": 166, + "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3 }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", "Id": 167, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1 }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 168, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "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", "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 -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/my images/logo.png\"", "Id": 171, + "CommandName": "Add-PnPSiteDesign", "Rank": 3 }, { - "CommandName": "Add-PnPSiteDesignFromWeb", "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 -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 -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png", "Id": 174, + "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 3 }, { - "CommandName": "Add-PnPSiteDesignTask", "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 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 176, + "CommandName": "Add-PnPSiteDesignTask", "Rank": 2 }, { - "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Id": 177, + "CommandName": "Add-PnPSiteScript", "Rank": 1 }, { - "CommandName": "Add-PnPSiteScriptPackage", "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-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Id": 179, + "CommandName": "Add-PnPSiteTemplate", "Rank": 1 }, { - "CommandName": "Add-PnPStoredCredential", "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 -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)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", "Id": 182, + "CommandName": "Add-PnPStoredCredential", "Rank": 3 }, { - "CommandName": "Add-PnPTaxonomyField", "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\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Id": 184, + "CommandName": "Add-PnPTaxonomyField", "Rank": 2 }, { - "CommandName": "Add-PnPTeamsChannel", "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 \"My Team\" -DisplayName \"My standard channel\"", "Id": 186, + "CommandName": "Add-PnPTeamsChannel", "Rank": 2 }, { - "CommandName": "Add-PnPTeamsChannel", "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 \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Id": 188, + "CommandName": "Add-PnPTeamsChannel", "Rank": 4 }, { - "CommandName": "Add-PnpTeamsChannelUser", "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 \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Id": 190, + "CommandName": "Add-PnpTeamsChannelUser", "Rank": 2 }, { - "CommandName": "Add-PnPTeamsTab", "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 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 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 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-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", "Id": 195, + "CommandName": "Add-PnPTeamsTeam", "Rank": 1 }, { - "CommandName": "Add-PnPTeamsUser", "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 Member", "Id": 197, + "CommandName": "Add-PnPTeamsUser", "Rank": 2 }, { - "CommandName": "Add-PnPTeamsUser", "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 -User \"jane@doe.com\" -Role Member -Channel Private", "Id": 199, + "CommandName": "Add-PnPTeamsUser", "Rank": 4 }, { - "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 200, + "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1 }, { - "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Id": 201, + "CommandName": "Add-PnPTenantSequence", "Rank": 1 }, { - "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Id": 202, + "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1 }, { - "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Id": 203, + "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1 }, { - "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Id": 204, + "CommandName": "Add-PnPTermToTerm", "Rank": 1 }, { - "CommandName": "Add-PnPView", "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\" -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\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", "Id": 207, + "CommandName": "Add-PnPView", "Rank": 3 }, { - "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\"", "Id": 208, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 1 }, { - "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\"", "Id": 209, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 2 }, { - "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\"", "Id": 210, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 3 }, { - "CommandName": "Add-PnPWebhookSubscription", "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 -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\" -ClientState \"Hello State!\"", "Id": 213, + "CommandName": "Add-PnPWebhookSubscription", "Rank": 3 }, { - "CommandName": "Add-PnPWebPartToWebPartPage", "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\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Id": 215, + "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 2 }, { - "CommandName": "Add-PnPWebPartToWikiPage", "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\" -XML $webpart -Row 1 -Column 1", "Id": 217, + "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 2 }, { - "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Id": 218, + "CommandName": "Add-PnPWikiPage", "Rank": 1 }, { - "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Id": 219, + "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1 }, { - "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Id": 220, + "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1 }, { - "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Id": 221, + "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1 }, { - "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Id": 222, + "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2 }, { - "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 223, + "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1 }, { - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Id": 224, + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1 }, { - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Id": 225, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1 }, { - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 226, + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1 }, { - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Id": 227, + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2 }, { - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Id": 228, + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3 }, { - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", "Id": 229, + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1 }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", "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\" -Wait", "Id": 231, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2 }, { - "CommandName": "Connect-PnPOnline", "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": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", "Id": 233, + "CommandName": "Convert-PnPFile", "Rank": 1 }, { - "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", "Id": 234, + "CommandName": "Convert-PnPFile", "Rank": 2 }, { - "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", "Id": 235, + "CommandName": "Convert-PnPFile", "Rank": 3 }, { - "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", "Id": 236, + "CommandName": "Convert-PnPFile", "Rank": 4 }, { - "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", "Id": 237, + "CommandName": "Convert-PnPFile", "Rank": 5 }, { - "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", "Id": 238, + "CommandName": "Convert-PnPFile", "Rank": 6 }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Id": 239, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1 }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Id": 240, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2 }, { - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", "Id": 241, + "CommandName": "Convert-PnPSiteTemplate", "Rank": 1 }, { - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Id": 242, + "CommandName": "Convert-PnPSiteTemplate", "Rank": 2 }, { - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Id": 243, + "CommandName": "Convert-PnPSiteTemplate", "Rank": 3 }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Id": 244, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1 }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Id": 245, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Id": 246, + "CommandName": "ConvertTo-PnPPage", "Rank": 1 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Id": 247, + "CommandName": "ConvertTo-PnPPage", "Rank": 2 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Id": 248, + "CommandName": "ConvertTo-PnPPage", "Rank": 3 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Id": 249, + "CommandName": "ConvertTo-PnPPage", "Rank": 4 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 250, + "CommandName": "ConvertTo-PnPPage", "Rank": 5 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Id": 251, + "CommandName": "ConvertTo-PnPPage", "Rank": 6 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Id": 252, + "CommandName": "ConvertTo-PnPPage", "Rank": 7 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite", "Id": 253, + "CommandName": "ConvertTo-PnPPage", "Rank": 8 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 254, + "CommandName": "ConvertTo-PnPPage", "Rank": 9 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Id": 255, + "CommandName": "ConvertTo-PnPPage", "Rank": 10 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Id": 256, + "CommandName": "ConvertTo-PnPPage", "Rank": 11 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 257, + "CommandName": "ConvertTo-PnPPage", "Rank": 12 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 258, + "CommandName": "ConvertTo-PnPPage", "Rank": 13 }, { - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Id": 259, + "CommandName": "ConvertTo-PnPPage", "Rank": 14 }, { - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 260, + "CommandName": "Copy-PnPFile", "Rank": 1 }, { - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 261, + "CommandName": "Copy-PnPFile", "Rank": 2 }, { - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 262, + "CommandName": "Copy-PnPFile", "Rank": 3 }, { - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 263, + "CommandName": "Copy-PnPFile", "Rank": 4 }, { - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 264, + "CommandName": "Copy-PnPFile", "Rank": 5 }, { - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 265, + "CommandName": "Copy-PnPFile", "Rank": 6 }, { - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 266, + "CommandName": "Copy-PnPFile", "Rank": 7 }, { - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 267, + "CommandName": "Copy-PnPFile", "Rank": 8 }, { - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 268, + "CommandName": "Copy-PnPFile", "Rank": 9 }, { - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 269, + "CommandName": "Copy-PnPFile", "Rank": 10 }, { - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 270, + "CommandName": "Copy-PnPFolder", "Rank": 1 }, { - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 271, + "CommandName": "Copy-PnPFolder", "Rank": 2 }, { - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 272, + "CommandName": "Copy-PnPFolder", "Rank": 3 }, { - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 273, + "CommandName": "Copy-PnPFolder", "Rank": 4 }, { - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 274, + "CommandName": "Copy-PnPFolder", "Rank": 5 }, { - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 275, + "CommandName": "Copy-PnPFolder", "Rank": 6 }, { - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 276, + "CommandName": "Copy-PnPFolder", "Rank": 7 }, { - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 277, + "CommandName": "Copy-PnPFolder", "Rank": 8 }, { - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 278, + "CommandName": "Copy-PnPFolder", "Rank": 9 }, { - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 279, + "CommandName": "Copy-PnPFolder", "Rank": 10 }, { - "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Id": 280, + "CommandName": "Copy-PnPItemProxy", "Rank": 1 }, { - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Id": 281, + "CommandName": "Copy-PnPList", "Rank": 1 }, { - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Id": 282, + "CommandName": "Copy-PnPList", "Rank": 2 }, { - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Id": 283, + "CommandName": "Copy-PnPList", "Rank": 3 }, { - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Id": 284, + "CommandName": "Copy-PnPList", "Rank": 4 }, { - "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Id": 285, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 1 }, { - "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Id": 286, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 2 }, { - "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", "Id": 287, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 3 }, { - "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", "Id": 288, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 4 }, { - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 289, + "CommandName": "Disable-PnPFeature", "Rank": 1 }, { - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 290, + "CommandName": "Disable-PnPFeature", "Rank": 2 }, { - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 291, + "CommandName": "Disable-PnPFeature", "Rank": 3 }, { - "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", "Id": 292, + "CommandName": "Disable-PnPPageScheduling", "Rank": 1 }, { - "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", "Id": 293, + "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1 }, { - "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", "Id": 294, + "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2 }, { - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", "Id": 295, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1 }, { - "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", "Id": 296, + "CommandName": "Disable-PnPSiteClassification", "Rank": 1 }, { - "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", "Id": 297, + "CommandName": "Disconnect-PnPOnline", "Rank": 1 }, { - "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", "Id": 298, + "CommandName": "Enable-PnPCommSite", "Rank": 1 }, { - "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Id": 299, + "CommandName": "Enable-PnPCommSite", "Rank": 2 }, { - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 300, + "CommandName": "Enable-PnPFeature", "Rank": 1 }, { - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 301, + "CommandName": "Enable-PnPFeature", "Rank": 2 }, { - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 302, + "CommandName": "Enable-PnPFeature", "Rank": 3 }, { - "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", "Id": 303, + "CommandName": "Enable-PnPPageScheduling", "Rank": 1 }, { - "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", "Id": 304, + "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1 }, { - "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", "Id": 305, + "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2 }, { - "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Id": 306, + "CommandName": "Enable-PnPSiteClassification", "Rank": 1 }, { - "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 307, + "CommandName": "Enable-PnPSiteClassification", "Rank": 2 }, { - "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Id": 308, + "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1 }, { - "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Id": 309, + "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2 }, { - "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", "Id": 310, + "CommandName": "Export-PnPPage", "Rank": 1 }, { - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Id": 311, + "CommandName": "Export-PnPPageMapping", "Rank": 1 }, { - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Id": 312, + "CommandName": "Export-PnPPageMapping", "Rank": 2 }, { - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Id": 313, + "CommandName": "Export-PnPPageMapping", "Rank": 3 }, { - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", "Id": 314, + "CommandName": "Export-PnPTaxonomy", "Rank": 1 }, { - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Id": 315, + "CommandName": "Export-PnPTaxonomy", "Rank": 2 }, { - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Id": 316, + "CommandName": "Export-PnPTaxonomy", "Rank": 3 }, { - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Id": 317, + "CommandName": "Export-PnPTaxonomy", "Rank": 4 }, { - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", "Id": 318, + "CommandName": "Export-PnPTermGroupToXml", "Rank": 1 }, { - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", "Id": 319, + "CommandName": "Export-PnPTermGroupToXml", "Rank": 2 }, { - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Id": 320, + "CommandName": "Export-PnPTermGroupToXml", "Rank": 3 }, { - "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 321, + "CommandName": "Export-PnPUserInfo", "Rank": 1 }, { - "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Id": 322, + "CommandName": "Export-PnPUserInfo", "Rank": 2 }, { - "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Id": 323, + "CommandName": "Export-PnPUserProfile", "Rank": 1 }, { - "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Id": 324, + "CommandName": "Export-PnPUserProfile", "Rank": 2 }, { - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", "Id": 325, + "CommandName": "Find-PnPFile", "Rank": 1 }, { - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Id": 326, + "CommandName": "Find-PnPFile", "Rank": 2 }, { - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Id": 327, + "CommandName": "Find-PnPFile", "Rank": 3 }, { - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", "Id": 328, + "CommandName": "Get-PnPAccessToken", "Rank": 1 }, { - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", "Id": 329, + "CommandName": "Get-PnPAccessToken", "Rank": 2 }, { - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Id": 330, + "CommandName": "Get-PnPAccessToken", "Rank": 3 }, { - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Id": 331, + "CommandName": "Get-PnPAccessToken", "Rank": 4 }, { - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Id": 332, + "CommandName": "Get-PnPAccessToken", "Rank": 5 }, { - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", "Id": 333, + "CommandName": "Get-PnPAlert", "Rank": 1 }, { - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", "Id": 334, + "CommandName": "Get-PnPAlert", "Rank": 2 }, { - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 335, + "CommandName": "Get-PnPAlert", "Rank": 3 }, { - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Id": 336, + "CommandName": "Get-PnPAlert", "Rank": 4 }, { - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", "Id": 337, + "CommandName": "Get-PnPAlert", "Rank": 5 }, { - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Id": 338, + "CommandName": "Get-PnPAlert", "Rank": 6 }, { - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", "Id": 339, + "CommandName": "Get-PnPApp", "Rank": 1 }, { - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", "Id": 340, + "CommandName": "Get-PnPApp", "Rank": 2 }, { - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 341, + "CommandName": "Get-PnPApp", "Rank": 3 }, { - "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Id": 342, + "CommandName": "Get-PnPAppErrors", "Rank": 1 }, { - "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Id": 343, + "CommandName": "Get-PnPAppErrors", "Rank": 2 }, { - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Id": 344, + "CommandName": "Get-PnPAppInfo", "Rank": 1 }, { - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 345, + "CommandName": "Get-PnPAppInfo", "Rank": 2 }, { - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Id": 346, + "CommandName": "Get-PnPAppInfo", "Rank": 3 }, { - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", "Id": 347, + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1 }, { - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 348, + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2 }, { - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Id": 349, + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3 }, { - "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", "Id": 350, + "CommandName": "Get-PnPAuditing", "Rank": 1 }, { - "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", "Id": 351, + "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1 }, { - "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Id": 352, + "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2 }, { - "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", "Id": 353, + "CommandName": "Get-PnPAvailableLanguage", "Rank": 1 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", "Id": 354, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Id": 355, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Id": 356, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3 }, { - "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", "Id": 357, + "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1 }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", "Id": 358, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1 }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Id": 359, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2 }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Id": 360, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3 }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Id": 361, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 362, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Id": 363, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Id": 364, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", "Id": 365, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Id": 366, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Id": 367, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3 }, { - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", "Id": 368, + "CommandName": "Get-PnPAzureADApp", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", "Id": 369, + "CommandName": "Get-PnPAzureADApp", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 370, + "CommandName": "Get-PnPAzureADApp", "Rank": 3 }, { - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Id": 371, + "CommandName": "Get-PnPAzureADApp", "Rank": 4 }, { - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", "Id": 372, + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Id": 373, + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 374, + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", "Id": 375, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Id": 376, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Id": 377, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Id": 378, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Id": 379, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5 }, { - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", "Id": 380, + "CommandName": "Get-PnPAzureADGroup", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", "Id": 381, + "CommandName": "Get-PnPAzureADGroup", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Id": 382, + "CommandName": "Get-PnPAzureADGroup", "Rank": 3 }, { - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Id": 383, + "CommandName": "Get-PnPAzureADGroup", "Rank": 4 }, { - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", "Id": 384, + "CommandName": "Get-PnPAzureADGroup", "Rank": 5 }, { - "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Id": 385, + "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", "Id": 386, + "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Id": 387, + "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Id": 388, + "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", "Id": 389, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Id": 390, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Id": 391, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Id": 392, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Id": 393, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 394, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 395, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 396, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Id": 397, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", "Id": 398, + "CommandName": "Get-PnPAzureADUser", "Rank": 1 }, { - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", "Id": 399, + "CommandName": "Get-PnPAzureADUser", "Rank": 2 }, { - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 400, + "CommandName": "Get-PnPAzureADUser", "Rank": 3 }, { - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Id": 401, + "CommandName": "Get-PnPAzureADUser", "Rank": 4 }, { - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Id": 402, + "CommandName": "Get-PnPAzureADUser", "Rank": 5 }, { - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Id": 403, + "CommandName": "Get-PnPAzureADUser", "Rank": 6 }, { - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Id": 404, + "CommandName": "Get-PnPAzureADUser", "Rank": 7 }, { - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", "Id": 405, + "CommandName": "Get-PnPAzureADUser", "Rank": 8 }, { - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Id": 406, + "CommandName": "Get-PnPAzureADUser", "Rank": 9 }, { - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Id": 407, + "CommandName": "Get-PnPAzureADUser", "Rank": 10 }, { - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Id": 408, + "CommandName": "Get-PnPAzureCertificate", "Rank": 1 }, { - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Id": 409, + "CommandName": "Get-PnPAzureCertificate", "Rank": 2 }, { - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Id": 410, + "CommandName": "Get-PnPAzureCertificate", "Rank": 3 }, { - "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", "Id": 411, + "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1 }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Id": 412, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1 }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", "Id": 413, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", "Id": 414, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Id": 415, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Id": 416, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Id": 417, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Id": 418, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5 }, { - "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", "Id": 419, + "CommandName": "Get-PnPChangeLog", "Rank": 1 }, { - "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", "Id": 420, + "CommandName": "Get-PnPChangeLog", "Rank": 2 }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Id": 421, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1 }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Id": 422, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2 }, { - "CommandName": "Get-PnPContainer", "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", "Id": 423, + "CommandName": "Get-PnPContainer", "Rank": 1 }, { - "CommandName": "Get-PnPContainer", "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "Id": 424, + "CommandName": "Get-PnPContainer", "Rank": 2 }, { - "CommandName": "Get-PnPContainer", "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", "Id": 425, + "CommandName": "Get-PnPContainer", "Rank": 3 }, { - "CommandName": "Get-PnPContainerTypeConfiguration", "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", "Id": 426, + "CommandName": "Get-PnPContainerTypeConfiguration", "Rank": 1 }, { - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", "Id": 427, + "CommandName": "Get-PnPContentType", "Rank": 1 }, { - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", "Id": 428, + "CommandName": "Get-PnPContentType", "Rank": 2 }, { - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", "Id": 429, + "CommandName": "Get-PnPContentType", "Rank": 3 }, { - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", "Id": 430, + "CommandName": "Get-PnPContentType", "Rank": 4 }, { - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "Id": 431, + "CommandName": "Get-PnPContentType", "Rank": 5 }, { - "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Id": 432, + "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1 }, { - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", "Id": 433, + "CommandName": "Get-PnPCustomAction", "Rank": 1 }, { - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 434, + "CommandName": "Get-PnPCustomAction", "Rank": 2 }, { - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", "Id": 435, + "CommandName": "Get-PnPCustomAction", "Rank": 3 }, { - "CommandName": "Get-PnPDeletedContainer", "Command": "Get-PnPDeletedContainer", "Id": 436, + "CommandName": "Get-PnPDeletedContainer", "Rank": 1 }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", "Id": 437, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1 }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 438, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2 }, { - "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", "Id": 439, + "CommandName": "Get-PnPDeletedTeam", "Rank": 1 }, { - "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", "Id": 440, + "CommandName": "Get-PnPDiagnostics", "Rank": 1 }, { - "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", "Id": 441, + "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1 }, { - "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Id": 442, + "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1 }, { - "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Id": 443, + "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2 }, { - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", "Id": 444, + "CommandName": "Get-PnPEventReceiver", "Rank": 1 }, { - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 445, + "CommandName": "Get-PnPEventReceiver", "Rank": 2 }, { - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Id": 446, + "CommandName": "Get-PnPEventReceiver", "Rank": 3 }, { - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Id": 447, + "CommandName": "Get-PnPEventReceiver", "Rank": 4 }, { - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 448, + "CommandName": "Get-PnPEventReceiver", "Rank": 5 }, { - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Id": 449, + "CommandName": "Get-PnPEventReceiver", "Rank": 6 }, { - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", "Id": 450, + "CommandName": "Get-PnPEventReceiver", "Rank": 7 }, { - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", "Id": 451, + "CommandName": "Get-PnPEventReceiver", "Rank": 8 }, { - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", "Id": 452, + "CommandName": "Get-PnPEventReceiver", "Rank": 9 }, { - "CommandName": "Get-PnPException", "Command": "Get-PnPException", "Id": 453, + "CommandName": "Get-PnPException", "Rank": 1 }, { - "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", "Id": 454, + "CommandName": "Get-PnPException", "Rank": 2 }, { - "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Id": 455, + "CommandName": "Get-PnPExternalUser", "Rank": 1 }, { - "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Id": 456, + "CommandName": "Get-PnPExternalUser", "Rank": 2 }, { - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", "Id": 457, + "CommandName": "Get-PnPFeature", "Rank": 1 }, { - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", "Id": 458, + "CommandName": "Get-PnPFeature", "Rank": 2 }, { - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 459, + "CommandName": "Get-PnPFeature", "Rank": 3 }, { - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Id": 460, + "CommandName": "Get-PnPFeature", "Rank": 4 }, { - "CommandName": "Get-PnPField", "Command": "Get-PnPField", "Id": 461, + "CommandName": "Get-PnPField", "Rank": 1 }, { - "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 462, + "CommandName": "Get-PnPField", "Rank": 2 }, { - "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", "Id": 463, + "CommandName": "Get-PnPField", "Rank": 3 }, { - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Id": 464, + "CommandName": "Get-PnPFile", "Rank": 1 }, { - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Id": 465, + "CommandName": "Get-PnPFile", "Rank": 2 }, { - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Id": 466, + "CommandName": "Get-PnPFile", "Rank": 3 }, { - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Id": 467, + "CommandName": "Get-PnPFile", "Rank": 4 }, { - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Id": 468, + "CommandName": "Get-PnPFile", "Rank": 5 }, { - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Id": 469, + "CommandName": "Get-PnPFile", "Rank": 6 }, { - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Id": 470, + "CommandName": "Get-PnPFile", "Rank": 7 }, { - "CommandName": "Get-PnPFileAnalyticsData", "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"", "Id": 471, + "CommandName": "Get-PnPFileAnalyticsData", "Rank": 1 }, { - "CommandName": "Get-PnPFileAnalyticsData", "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays", "Id": 472, + "CommandName": "Get-PnPFileAnalyticsData", "Rank": 2 }, { - "CommandName": "Get-PnPFileAnalyticsData", "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "Id": 473, + "CommandName": "Get-PnPFileAnalyticsData", "Rank": 3 }, { - "CommandName": "Get-PnPFileInFolder", "Command": "Get-PnPFileInFolder", "Id": 474, + "CommandName": "Get-PnPFileInFolder", "Rank": 1 }, { - "CommandName": "Get-PnPFileInFolder", "Command": "Get-PnPFileInFolder -Recurse", "Id": 475, + "CommandName": "Get-PnPFileInFolder", "Rank": 2 }, { - "CommandName": "Get-PnPFileInFolder", "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", "Id": 476, + "CommandName": "Get-PnPFileInFolder", "Rank": 3 }, { - "CommandName": "Get-PnPFileInFolder", "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 477, + "CommandName": "Get-PnPFileInFolder", "Rank": 4 }, { - "CommandName": "Get-PnPFileInFolder", "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", "Id": 478, + "CommandName": "Get-PnPFileInFolder", "Rank": 5 }, { - "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 479, + "CommandName": "Get-PnPFileSharingLink", "Rank": 1 }, { - "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Id": 480, + "CommandName": "Get-PnPFileVersion", "Rank": 1 }, { - "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Id": 481, + "CommandName": "Get-PnPFileVersion", "Rank": 2 }, { - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -AsAdmin", "Id": 482, + "CommandName": "Get-PnPFlow", "Rank": 1 }, { - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Id": 483, + "CommandName": "Get-PnPFlow", "Rank": 2 }, { - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Id": 484, + "CommandName": "Get-PnPFlow", "Rank": 3 }, { - "CommandName": "Get-PnPFlowOwner", "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Id": 485, + "CommandName": "Get-PnPFlowOwner", "Rank": 1 }, { - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder", "Id": 486, + "CommandName": "Get-PnPFolder", "Rank": 1 }, { - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -CurrentWebRootFolder", "Id": 487, + "CommandName": "Get-PnPFolder", "Rank": 2 }, { - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Id": 488, + "CommandName": "Get-PnPFolder", "Rank": 3 }, { - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Id": 489, + "CommandName": "Get-PnPFolder", "Rank": 4 }, { - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", "Id": 490, + "CommandName": "Get-PnPFolder", "Rank": 5 }, { - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", "Id": 491, + "CommandName": "Get-PnPFolder", "Rank": 6 }, { - "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder", "Id": 492, + "CommandName": "Get-PnPFolderInFolder", "Rank": 1 }, { - "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder -Recurse", "Id": 493, + "CommandName": "Get-PnPFolderInFolder", "Rank": 2 }, { - "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", "Id": 494, + "CommandName": "Get-PnPFolderInFolder", "Rank": 3 }, { - "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Id": 495, + "CommandName": "Get-PnPFolderInFolder", "Rank": 4 }, { - "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Id": 496, + "CommandName": "Get-PnPFolderInFolder", "Rank": 5 }, { - "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", "Id": 497, + "CommandName": "Get-PnPFolderInFolder", "Rank": 6 }, { - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem", "Id": 498, + "CommandName": "Get-PnPFolderItem", "Rank": 1 }, { - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Recurse", "Id": 499, + "CommandName": "Get-PnPFolderItem", "Rank": 2 }, { - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Id": 500, + "CommandName": "Get-PnPFolderItem", "Rank": 3 }, { - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 501, + "CommandName": "Get-PnPFolderItem", "Rank": 4 }, { - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Id": 502, + "CommandName": "Get-PnPFolderItem", "Rank": 5 }, { - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 503, + "CommandName": "Get-PnPFolderItem", "Rank": 6 }, { - "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 504, + "CommandName": "Get-PnPFolderSharingLink", "Rank": 1 }, { - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", "Id": 505, + "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1 }, { - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Id": 506, + "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2 }, { - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Id": 507, + "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3 }, { - "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", "Id": 508, + "CommandName": "Get-PnPFooter", "Rank": 1 }, { - "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", "Id": 509, + "CommandName": "Get-PnPGraphAccessToken", "Rank": 1 }, { - "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", "Id": 510, + "CommandName": "Get-PnPGraphAccessToken", "Rank": 2 }, { - "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", "Id": 511, + "CommandName": "Get-PnPGraphSubscription", "Rank": 1 }, { - "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 512, + "CommandName": "Get-PnPGraphSubscription", "Rank": 2 }, { - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", "Id": 513, + "CommandName": "Get-PnPGroup", "Rank": 1 }, { - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", "Id": 514, + "CommandName": "Get-PnPGroup", "Rank": 2 }, { - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", "Id": 515, + "CommandName": "Get-PnPGroup", "Rank": 3 }, { - "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Id": 516, + "CommandName": "Get-PnPGroupMember", "Rank": 1 }, { - "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Id": 517, + "CommandName": "Get-PnPGroupMember", "Rank": 2 }, { - "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Id": 518, + "CommandName": "Get-PnPGroupPermissions", "Rank": 1 }, { - "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", "Id": 519, + "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1 }, { - "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", "Id": 520, + "CommandName": "Get-PnPHomePage", "Rank": 1 }, { - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", "Id": 521, + "CommandName": "Get-PnPHomeSite", "Rank": 1 }, { - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Id": 522, + "CommandName": "Get-PnPHomeSite", "Rank": 2 }, { - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", "Id": 523, + "CommandName": "Get-PnPHomeSite", "Rank": 3 }, { - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", "Id": 524, + "CommandName": "Get-PnPHubSite", "Rank": 1 }, { - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 525, + "CommandName": "Get-PnPHubSite", "Rank": 2 }, { - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Id": 526, + "CommandName": "Get-PnPHubSite", "Rank": 3 }, { - "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", "Id": 527, + "CommandName": "Get-PnPHubSiteChild", "Rank": 1 }, { - "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 528, + "CommandName": "Get-PnPHubSiteChild", "Rank": 2 }, { - "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", "Id": 529, + "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1 }, { - "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Id": 530, + "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1 }, { - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", "Id": 531, + "CommandName": "Get-PnPJavaScriptLink", "Rank": 1 }, { - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", "Id": 532, + "CommandName": "Get-PnPJavaScriptLink", "Rank": 2 }, { - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", "Id": 533, + "CommandName": "Get-PnPJavaScriptLink", "Rank": 3 }, { - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", "Id": 534, + "CommandName": "Get-PnPJavaScriptLink", "Rank": 4 }, { - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", "Id": 535, + "CommandName": "Get-PnPJavaScriptLink", "Rank": 5 }, { - "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", "Id": 536, + "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1 }, { - "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", "Id": 537, + "CommandName": "Get-PnPLabel", "Rank": 1 }, { - "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Id": 538, + "CommandName": "Get-PnPLabel", "Rank": 2 }, { - "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Id": 539, + "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1 }, { - "CommandName": "Get-PnPList", "Command": "Get-PnPList", "Id": 540, + "CommandName": "Get-PnPList", "Rank": 1 }, { - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 541, + "CommandName": "Get-PnPList", "Rank": 2 }, { - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", "Id": 542, + "CommandName": "Get-PnPList", "Rank": 3 }, { - "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Id": 543, + "CommandName": "Get-PnPList", "Rank": 4 }, { - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Id": 544, + "CommandName": "Get-PnPList", "Rank": 5 }, { - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", "Id": 545, + "CommandName": "Get-PnPListDesign", "Rank": 1 }, { - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 546, + "CommandName": "Get-PnPListDesign", "Rank": 2 }, { - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", "Id": 547, + "CommandName": "Get-PnPListDesign", "Rank": 3 }, { - "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Id": 548, + "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1 }, { - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", "Id": 549, + "CommandName": "Get-PnPListItem", "Rank": 1 }, { - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", "Id": 550, + "CommandName": "Get-PnPListItem", "Rank": 2 }, { - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Id": 551, + "CommandName": "Get-PnPListItem", "Rank": 3 }, { - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"", "Id": 552, + "CommandName": "Get-PnPListItem", "Rank": 4 }, { - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"", "Id": 553, + "CommandName": "Get-PnPListItem", "Rank": 5 }, { - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Id": 554, + "CommandName": "Get-PnPListItem", "Rank": 6 }, { - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Id": 555, + "CommandName": "Get-PnPListItem", "Rank": 7 }, { - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Id": 556, + "CommandName": "Get-PnPListItem", "Rank": 8 }, { - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Id": 557, + "CommandName": "Get-PnPListItem", "Rank": 9 }, { - "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Id": 558, + "CommandName": "Get-PnPListItemAttachment", "Rank": 1 }, { - "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Id": 559, + "CommandName": "Get-PnPListItemAttachment", "Rank": 2 }, { - "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Id": 560, + "CommandName": "Get-PnPListItemComment", "Rank": 1 }, { - "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Id": 561, + "CommandName": "Get-PnPListItemPermission", "Rank": 1 }, { - "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Id": 562, + "CommandName": "Get-PnPListItemVersion", "Rank": 1 }, { - "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Id": 563, + "CommandName": "Get-PnPListPermissions", "Rank": 1 }, { - "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Id": 564, + "CommandName": "Get-PnPListPermissions", "Rank": 2 }, { - "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Id": 565, + "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1 }, { - "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", "Id": 566, + "CommandName": "Get-PnPMasterPage", "Rank": 1 }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", "Id": 567, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1 }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Id": 568, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2 }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", "Id": 569, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1 }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Id": 570, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", "Id": 571, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Id": 572, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Id": 573, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Id": 574, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", "Id": 575, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5 }, { - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Id": 576, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", "Id": 577, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Id": 578, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 579, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Id": 580, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Id": 581, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Id": 582, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3 }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Id": 583, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1 }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Id": 584, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", "Id": 585, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Id": 586, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 587, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Id": 588, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", "Id": 589, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Id": 590, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 591, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 592, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Id": 593, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 594, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3 }, { - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", "Id": 595, + "CommandName": "Get-PnPNavigationNode", "Rank": 1 }, { - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Id": 596, + "CommandName": "Get-PnPNavigationNode", "Rank": 2 }, { - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Id": 597, + "CommandName": "Get-PnPNavigationNode", "Rank": 3 }, { - "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", "Id": 598, + "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1 }, { - "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", "Id": 599, + "CommandName": "Get-PnPOrgNewsSite", "Rank": 1 }, { - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Id": 600, + "CommandName": "Get-PnPPage", "Rank": 1 }, { - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", "Id": 601, + "CommandName": "Get-PnPPage", "Rank": 2 }, { - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Id": 602, + "CommandName": "Get-PnPPage", "Rank": 3 }, { - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Id": 603, + "CommandName": "Get-PnPPage", "Rank": 4 }, { - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", "Id": 604, + "CommandName": "Get-PnPPageComponent", "Rank": 1 }, { - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 605, + "CommandName": "Get-PnPPageComponent", "Rank": 2 }, { - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Id": 606, + "CommandName": "Get-PnPPageComponent", "Rank": 3 }, { - "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 607, + "CommandName": "Get-PnPPlannerBucket", "Rank": 1 }, { - "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", "Id": 608, + "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1 }, { - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Id": 609, + "CommandName": "Get-PnPPlannerPlan", "Rank": 1 }, { - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Id": 610, + "CommandName": "Get-PnPPlannerPlan", "Rank": 2 }, { - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Id": 611, + "CommandName": "Get-PnPPlannerPlan", "Rank": 3 }, { - "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 612, + "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1 }, { - "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Id": 613, + "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1 }, { - "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 614, + "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2 }, { - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 615, + "CommandName": "Get-PnPPlannerTask", "Rank": 1 }, { - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 616, + "CommandName": "Get-PnPPlannerTask", "Rank": 2 }, { - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 617, + "CommandName": "Get-PnPPlannerTask", "Rank": 3 }, { - "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 618, + "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1 }, { - "CommandName": "Get-PnPPowerPlatformConnector", "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Id": 619, + "CommandName": "Get-PnPPowerPlatformConnector", "Rank": 1 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", "Id": 620, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Id": 621, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Id": 622, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3 }, { - "CommandName": "Get-PnPPowerPlatformSolution", "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)", "Id": 623, + "CommandName": "Get-PnPPowerPlatformSolution", "Rank": 1 }, { - "CommandName": "Get-PnPPowerPlatformSolution", "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'", "Id": 624, + "CommandName": "Get-PnPPowerPlatformSolution", "Rank": 2 }, { - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", "Id": 625, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1 }, { - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", "Id": 626, + "CommandName": "Get-PnPPropertyBag", "Rank": 1 }, { - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", "Id": 627, + "CommandName": "Get-PnPPropertyBag", "Rank": 2 }, { - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Id": 628, + "CommandName": "Get-PnPPropertyBag", "Rank": 3 }, { - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Id": 629, + "CommandName": "Get-PnPPropertyBag", "Rank": 4 }, { - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Id": 630, + "CommandName": "Get-PnPPropertyBag", "Rank": 5 }, { - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", "Id": 631, + "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1 }, { - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Id": 632, + "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2 }, { - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", "Id": 633, + "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3 }, { - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", "Id": 634, + "CommandName": "Get-PnPRecycleBinItem", "Rank": 1 }, { - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Id": 635, + "CommandName": "Get-PnPRecycleBinItem", "Rank": 2 }, { - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", "Id": 636, + "CommandName": "Get-PnPRecycleBinItem", "Rank": 3 }, { - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", "Id": 637, + "CommandName": "Get-PnPRecycleBinItem", "Rank": 4 }, { - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Id": 638, + "CommandName": "Get-PnPRecycleBinItem", "Rank": 5 }, { - "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", "Id": 639, + "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1 }, { - "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel", "Id": 640, + "CommandName": "Get-PnPRetentionLabel", "Rank": 1 }, { - "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Id": 641, + "CommandName": "Get-PnPRetentionLabel", "Rank": 2 }, { - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", "Id": 642, + "CommandName": "Get-PnPRoleDefinition", "Rank": 1 }, { - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", "Id": 643, + "CommandName": "Get-PnPRoleDefinition", "Rank": 2 }, { - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Id": 644, + "CommandName": "Get-PnPRoleDefinition", "Rank": 3 }, { - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", "Id": 645, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 1 }, { - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", "Id": 646, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 2 }, { - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Id": 647, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 3 }, { - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 648, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 4 }, { - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Id": 649, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 5 }, { - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Id": 650, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 6 }, { - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Id": 651, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 7 }, { - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Id": 652, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 8 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", "Id": 653, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Id": 654, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Id": 655, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Id": 656, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Id": 657, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Id": 658, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6 }, { - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Id": 659, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7 }, { - "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", "Id": 660, + "CommandName": "Get-PnPSearchSettings", "Rank": 1 }, { - "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", "Id": 661, + "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1 }, { - "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Id": 662, + "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2 }, { - "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", "Id": 663, + "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1 }, { - "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Id": 664, + "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2 }, { - "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", "Id": 665, + "CommandName": "Get-PnPSharePointAddIn", "Rank": 1 }, { - "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Id": 666, + "CommandName": "Get-PnPSharePointAddIn", "Rank": 2 }, { - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", "Id": 667, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1 }, { - "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", "Id": 668, + "CommandName": "Get-PnPSite", "Rank": 1 }, { - "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Id": 669, + "CommandName": "Get-PnPSite", "Rank": 2 }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Command": "Get-PnPSiteAnalyticsData -All", "Id": 670, + "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 1 }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Command": "Get-PnPSiteAnalyticsData -LastSevenDays", "Id": 671, + "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 2 }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "Id": 672, + "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 3 }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "Id": 673, + "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 4 }, { - "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", "Id": 674, + "CommandName": "Get-PnPSiteClosure", "Rank": 1 }, { - "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", "Id": 675, + "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", "Id": 676, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Id": 677, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Id": 678, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3 }, { - "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", "Id": 679, + "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1 }, { - "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", "Id": 680, + "CommandName": "Get-PnPSiteDesign", "Rank": 1 }, { - "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 681, + "CommandName": "Get-PnPSiteDesign", "Rank": 2 }, { - "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 682, + "CommandName": "Get-PnPSiteDesignRights", "Rank": 1 }, { - "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", "Id": 683, + "CommandName": "Get-PnPSiteDesignRun", "Rank": 1 }, { - "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Id": 684, + "CommandName": "Get-PnPSiteDesignRun", "Rank": 2 }, { - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 685, + "CommandName": "Get-PnPSiteDesignTask", "Rank": 1 }, { - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", "Id": 686, + "CommandName": "Get-PnPSiteDesignTask", "Rank": 2 }, { - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 687, + "CommandName": "Get-PnPSiteDesignTask", "Rank": 3 }, { - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", "Id": 688, + "CommandName": "Get-PnPSiteGroup", "Rank": 1 }, { - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 689, + "CommandName": "Get-PnPSiteGroup", "Rank": 2 }, { - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Id": 690, + "CommandName": "Get-PnPSiteGroup", "Rank": 3 }, { - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 691, + "CommandName": "Get-PnPSiteGroup", "Rank": 4 }, { - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", "Id": 692, + "CommandName": "Get-PnPSitePolicy", "Rank": 1 }, { - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", "Id": 693, + "CommandName": "Get-PnPSitePolicy", "Rank": 2 }, { - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Id": 694, + "CommandName": "Get-PnPSitePolicy", "Rank": 3 }, { - "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", "Id": 695, + "CommandName": "Get-PnPSiteScript", "Rank": 1 }, { - "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 696, + "CommandName": "Get-PnPSiteScript", "Rank": 2 }, { - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Id": 697, + "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1 }, { - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Id": 698, + "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2 }, { - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Id": 699, + "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Id": 700, + "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Id": 701, + "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Id": 702, + "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 3 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Id": 703, + "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Id": 704, + "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Id": 705, + "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 6 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", "Id": 706, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Id": 707, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Id": 708, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Id": 709, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Id": 710, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", "Id": 711, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6 }, { - "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", "Id": 712, + "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1 }, { - "CommandName": "Get-PnPSiteSetVersionPolicyProgress", "Command": "Get-PnPSiteSetVersionPolicyProgress", "Id": 713, + "CommandName": "Get-PnPSiteSetVersionPolicyProgress", "Rank": 1 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", "Id": 714, + "CommandName": "Get-PnPSiteTemplate", "Rank": 1 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", "Id": 715, + "CommandName": "Get-PnPSiteTemplate", "Rank": 2 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", "Id": 716, + "CommandName": "Get-PnPSiteTemplate", "Rank": 3 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Id": 717, + "CommandName": "Get-PnPSiteTemplate", "Rank": 4 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Id": 718, + "CommandName": "Get-PnPSiteTemplate", "Rank": 5 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Id": 719, + "CommandName": "Get-PnPSiteTemplate", "Rank": 6 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Id": 720, + "CommandName": "Get-PnPSiteTemplate", "Rank": 7 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Id": 721, + "CommandName": "Get-PnPSiteTemplate", "Rank": 8 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Id": 722, + "CommandName": "Get-PnPSiteTemplate", "Rank": 9 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Id": 723, + "CommandName": "Get-PnPSiteTemplate", "Rank": 10 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Id": 724, + "CommandName": "Get-PnPSiteTemplate", "Rank": 11 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Id": 725, + "CommandName": "Get-PnPSiteTemplate", "Rank": 12 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "Id": 726, + "CommandName": "Get-PnPSiteTemplate", "Rank": 13 }, { - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Id": 727, + "CommandName": "Get-PnPSiteTemplate", "Rank": 14 }, { - "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 728, + "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1 }, { - "CommandName": "Get-PnPSiteVersionPolicy", "Command": "Get-PnPSiteVersionPolicy", "Id": 729, + "CommandName": "Get-PnPSiteVersionPolicy", "Rank": 1 }, { - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", "Id": 730, + "CommandName": "Get-PnPStorageEntity", "Rank": 1 }, { - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", "Id": 731, + "CommandName": "Get-PnPStorageEntity", "Rank": 2 }, { - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", "Id": 732, + "CommandName": "Get-PnPStorageEntity", "Rank": 3 }, { - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Id": 733, + "CommandName": "Get-PnPStorageEntity", "Rank": 4 }, { - "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", "Id": 734, + "CommandName": "Get-PnPStoredCredential", "Rank": 1 }, { - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 735, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1 }, { - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 736, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1 }, { - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Id": 737, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1 }, { - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", "Id": 738, + "CommandName": "Get-PnPSubWeb", "Rank": 1 }, { - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", "Id": 739, + "CommandName": "Get-PnPSubWeb", "Rank": 2 }, { - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Id": 740, + "CommandName": "Get-PnPSubWeb", "Rank": 3 }, { - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Id": 741, + "CommandName": "Get-PnPSubWeb", "Rank": 4 }, { - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Id": 742, + "CommandName": "Get-PnPSubWeb", "Rank": 5 }, { - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", "Id": 743, + "CommandName": "Get-PnPSyntexModel", "Rank": 1 }, { - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", "Id": 744, + "CommandName": "Get-PnPSyntexModel", "Rank": 2 }, { - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Id": 745, + "CommandName": "Get-PnPSyntexModel", "Rank": 3 }, { - "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Id": 746, + "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1 }, { - "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Id": 747, + "CommandName": "Get-PnPTaxonomyItem", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", "Id": 748, + "CommandName": "Get-PnPTeamsApp", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Id": 749, + "CommandName": "Get-PnPTeamsApp", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Id": 750, + "CommandName": "Get-PnPTeamsApp", "Rank": 3 }, { - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Id": 751, + "CommandName": "Get-PnPTeamsChannel", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Id": 752, + "CommandName": "Get-PnPTeamsChannel", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 753, + "CommandName": "Get-PnPTeamsChannel", "Rank": 3 }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Id": 754, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 755, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Id": 756, + "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Id": 757, + "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Id": 758, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Id": 759, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Id": 760, + "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Id": 761, + "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Id": 762, + "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3 }, { - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Id": 763, + "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4 }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Id": 764, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Id": 765, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Id": 766, + "CommandName": "Get-PnPTeamsTab", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Id": 767, + "CommandName": "Get-PnPTeamsTab", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "Id": 768, + "CommandName": "Get-PnPTeamsTab", "Rank": 3 }, { - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Id": 769, + "CommandName": "Get-PnPTeamsTab", "Rank": 4 }, { - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Id": 770, + "CommandName": "Get-PnPTeamsTab", "Rank": 5 }, { - "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 771, + "CommandName": "Get-PnPTeamsTag", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 772, + "CommandName": "Get-PnPTeamsTag", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", "Id": 773, + "CommandName": "Get-PnPTeamsTeam", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Id": 774, + "CommandName": "Get-PnPTeamsTeam", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Id": 775, + "CommandName": "Get-PnPTeamsTeam", "Rank": 3 }, { - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Id": 776, + "CommandName": "Get-PnPTeamsTeam", "Rank": 4 }, { - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Id": 777, + "CommandName": "Get-PnPTeamsTeam", "Rank": 5 }, { - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", "Id": 778, + "CommandName": "Get-PnPTeamsUser", "Rank": 1 }, { - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Id": 779, + "CommandName": "Get-PnPTeamsUser", "Rank": 2 }, { - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Id": 780, + "CommandName": "Get-PnPTeamsUser", "Rank": 3 }, { - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Id": 781, + "CommandName": "Get-PnPTeamsUser", "Rank": 4 }, { - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", "Id": 782, + "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1 }, { - "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", "Id": 783, + "CommandName": "Get-PnPTenant", "Rank": 1 }, { - "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", "Id": 784, + "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1 }, { - "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Id": 785, + "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1 }, { - "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Id": 786, + "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1 }, { - "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Id": 787, + "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1 }, { - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", "Id": 788, + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1 }, { - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Detailed", "Id": 789, + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2 }, { - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 790, + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3 }, { - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Id": 791, + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4 }, { - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Id": 792, + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 5 }, { - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", "Id": 793, + "CommandName": "Get-PnPTenantId", "Rank": 1 }, { - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", "Id": 794, + "CommandName": "Get-PnPTenantId", "Rank": 2 }, { - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Id": 795, + "CommandName": "Get-PnPTenantId", "Rank": 3 }, { - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Id": 796, + "CommandName": "Get-PnPTenantId", "Rank": 4 }, { - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Id": 797, + "CommandName": "Get-PnPTenantInfo", "Rank": 1 }, { - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Id": 798, + "CommandName": "Get-PnPTenantInfo", "Rank": 2 }, { - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo", "Id": 799, + "CommandName": "Get-PnPTenantInfo", "Rank": 3 }, { - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -CurrentTenant", "Id": 800, + "CommandName": "Get-PnPTenantInfo", "Rank": 4 }, { - "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", "Id": 801, + "CommandName": "Get-PnPTenantInstance", "Rank": 1 }, { - "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", "Id": 802, + "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1 }, { - "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Id": 803, + "CommandName": "Get-PnPTenantSequence", "Rank": 1 }, { - "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Id": 804, + "CommandName": "Get-PnPTenantSequence", "Rank": 2 }, { - "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Id": 805, + "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1 }, { - "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Id": 806, + "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2 }, { - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", "Id": 807, + "CommandName": "Get-PnPTenantSite", "Rank": 1 }, { - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", "Id": 808, + "CommandName": "Get-PnPTenantSite", "Rank": 2 }, { - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Id": 809, + "CommandName": "Get-PnPTenantSite", "Rank": 3 }, { - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Id": 810, + "CommandName": "Get-PnPTenantSite", "Rank": 4 }, { - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Id": 811, + "CommandName": "Get-PnPTenantSite", "Rank": 5 }, { - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Id": 812, + "CommandName": "Get-PnPTenantSite", "Rank": 6 }, { - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Id": 813, + "CommandName": "Get-PnPTenantSite", "Rank": 7 }, { - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Id": 814, + "CommandName": "Get-PnPTenantSite", "Rank": 8 }, { - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Id": 815, + "CommandName": "Get-PnPTenantSite", "Rank": 9 }, { - "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", "Id": 816, + "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1 }, { - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Id": 817, + "CommandName": "Get-PnPTenantTemplate", "Rank": 1 }, { - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Id": 818, + "CommandName": "Get-PnPTenantTemplate", "Rank": 2 }, { - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Id": 819, + "CommandName": "Get-PnPTenantTemplate", "Rank": 3 }, { - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", "Id": 820, + "CommandName": "Get-PnPTenantTheme", "Rank": 1 }, { - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 821, + "CommandName": "Get-PnPTenantTheme", "Rank": 2 }, { - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Id": 822, + "CommandName": "Get-PnPTenantTheme", "Rank": 3 }, { - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 823, + "CommandName": "Get-PnPTerm", "Rank": 1 }, { - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 824, + "CommandName": "Get-PnPTerm", "Rank": 2 }, { - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 825, + "CommandName": "Get-PnPTerm", "Rank": 3 }, { - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Id": 826, + "CommandName": "Get-PnPTerm", "Rank": 4 }, { - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Id": 827, + "CommandName": "Get-PnPTerm", "Rank": 5 }, { - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", "Id": 828, + "CommandName": "Get-PnPTermGroup", "Rank": 1 }, { - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Id": 829, + "CommandName": "Get-PnPTermGroup", "Rank": 2 }, { - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Id": 830, + "CommandName": "Get-PnPTermGroup", "Rank": 3 }, { - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Id": 831, + "CommandName": "Get-PnPTermLabel", "Rank": 1 }, { - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Id": 832, + "CommandName": "Get-PnPTermLabel", "Rank": 2 }, { - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 833, + "CommandName": "Get-PnPTermLabel", "Rank": 3 }, { - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Id": 834, + "CommandName": "Get-PnPTermSet", "Rank": 1 }, { - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Id": 835, + "CommandName": "Get-PnPTermSet", "Rank": 2 }, { - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Id": 836, + "CommandName": "Get-PnPTermSet", "Rank": 3 }, { - "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", "Id": 837, + "CommandName": "Get-PnPTheme", "Rank": 1 }, { - "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Id": 838, + "CommandName": "Get-PnPTheme", "Rank": 2 }, { - "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", "Id": 839, + "CommandName": "Get-PnPTimeZoneId", "Rank": 1 }, { - "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", "Id": 840, + "CommandName": "Get-PnPTimeZoneId", "Rank": 2 }, { - "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Id": 841, + "CommandName": "Get-PnPUnfurlLink", "Rank": 1 }, { - "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Id": 842, + "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1 }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", "Id": 843, + "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1 }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Id": 844, + "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2 }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId <guid>", "Id": 845, + "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3 }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails", "Id": 846, + "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4 }, { - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", "Id": 847, + "CommandName": "Get-PnPUser", "Rank": 1 }, { - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", "Id": 848, + "CommandName": "Get-PnPUser", "Rank": 2 }, { - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Id": 849, + "CommandName": "Get-PnPUser", "Rank": 3 }, { - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Id": 850, + "CommandName": "Get-PnPUser", "Rank": 4 }, { - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", "Id": 851, + "CommandName": "Get-PnPUser", "Rank": 5 }, { - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Id": 852, + "CommandName": "Get-PnPUser", "Rank": 6 }, { - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Id": 853, + "CommandName": "Get-PnPUser", "Rank": 7 }, { - "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Id": 854, + "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1 }, { - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Id": 855, + "CommandName": "Get-PnPUserProfileProperty", "Rank": 1 }, { - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Id": 856, + "CommandName": "Get-PnPUserProfileProperty", "Rank": 2 }, { - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Id": 857, + "CommandName": "Get-PnPUserProfileProperty", "Rank": 3 }, { - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", "Id": 858, + "CommandName": "Get-PnPView", "Rank": 1 }, { - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Id": 859, + "CommandName": "Get-PnPView", "Rank": 2 }, { - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Id": 860, + "CommandName": "Get-PnPView", "Rank": 3 }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", "Id": 861, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1 }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 862, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2 }, { - "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", "Id": 863, + "CommandName": "Get-PnPWeb", "Rank": 1 }, { - "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", "Id": 864, + "CommandName": "Get-PnPWebHeader", "Rank": 1 }, { - "CommandName": "Get-PnPWebhookSubscription", "Command": "Get-PnPWebhookSubscription -List MyList", "Id": 865, + "CommandName": "Get-PnPWebhookSubscription", "Rank": 1 }, { - "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Id": 866, + "CommandName": "Get-PnPWebPart", "Rank": 1 }, { - "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 867, + "CommandName": "Get-PnPWebPart", "Rank": 2 }, { - "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Id": 868, + "CommandName": "Get-PnPWebPartProperty", "Rank": 1 }, { - "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Id": 869, + "CommandName": "Get-PnPWebPartProperty", "Rank": 2 }, { - "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 870, + "CommandName": "Get-PnPWebPartXml", "Rank": 1 }, { - "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates", + "Command": "Get-PnPWebPermission -Identity (Get-PnPWeb) -PrincipalId 60", "Id": 871, + "CommandName": "Get-PnPWebPermission", "Rank": 1 }, { - "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates -LCID 1033", + "Command": "Get-PnPWebPermission -Identity \"subsite\" -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Id": 872, + "CommandName": "Get-PnPWebPermission", "Rank": 2 }, { + "Command": "Get-PnPWebTemplates", + "Id": 873, + "CommandName": "Get-PnPWebTemplates", + "Rank": 1 + }, + { + "Command": "Get-PnPWebTemplates -LCID 1033", + "Id": 874, "CommandName": "Get-PnPWebTemplates", + "Rank": 2 + }, + { "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Id": 873, + "Id": 875, + "CommandName": "Get-PnPWebTemplates", "Rank": 3 }, { - "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Id": 874, + "Id": 876, + "CommandName": "Get-PnPWikiPageContent", "Rank": 1 }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Id": 875, + "Id": 877, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1 }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", - "Id": 876, + "Id": 878, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2 }, { - "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 877, + "Id": 879, + "CommandName": "Grant-PnPHubSiteRights", "Rank": 1 }, { - "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 878, + "Id": 880, + "CommandName": "Grant-PnPSiteDesignRights", "Rank": 1 }, { - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 879, + "Id": 881, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1 }, { - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Id": 880, + "Id": 882, + "CommandName": "Import-PnPTaxonomy", "Rank": 1 }, { - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Id": 881, + "Id": 883, + "CommandName": "Import-PnPTaxonomy", "Rank": 2 }, { - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Id": 882, + "Id": 884, + "CommandName": "Import-PnPTaxonomy", "Rank": 3 }, { - "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Id": 883, + "Id": 885, + "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1 }, { - "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Id": 884, + "Id": 886, + "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2 }, { - "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Id": 885, + "Id": 887, + "CommandName": "Import-PnPTermSet", "Rank": 1 }, { - "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", - "Id": 886, + "Id": 888, + "CommandName": "Import-PnPTermSet", "Rank": 2 }, { - "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", - "Id": 887, + "Id": 889, + "CommandName": "Import-PnPTermSet", "Rank": 3 }, { - "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 888, + "Id": 890, + "CommandName": "Install-PnPApp", "Rank": 1 }, { - "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 889, + "Id": 891, + "CommandName": "Install-PnPApp", "Rank": 2 }, { - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Id": 890, + "Id": 892, + "CommandName": "Invoke-PnPGraphMethod", "Rank": 1 }, { - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Id": 891, + "Id": 893, + "CommandName": "Invoke-PnPGraphMethod", "Rank": 2 }, { - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Id": 892, + "Id": 894, + "CommandName": "Invoke-PnPGraphMethod", "Rank": 3 }, { - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Id": 893, + "Id": 895, + "CommandName": "Invoke-PnPGraphMethod", "Rank": 4 }, { - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Id": 894, + "Id": 896, + "CommandName": "Invoke-PnPGraphMethod", "Rank": 5 }, { - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "Id": 895, + "Id": 897, + "CommandName": "Invoke-PnPGraphMethod", "Rank": 6 }, { - "CommandName": "Invoke-PnPGraphMethod", "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": 896, + "Id": 898, + "CommandName": "Invoke-PnPGraphMethod", "Rank": 7 }, { - "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 897, + "Id": 899, + "CommandName": "Invoke-PnPListDesign", "Rank": 1 }, { - "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 898, + "Id": 900, + "CommandName": "Invoke-PnPListDesign", "Rank": 2 }, { - "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", - "Id": 899, + "Id": 901, + "CommandName": "Invoke-PnPQuery", "Rank": 1 }, { - "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 900, + "Id": 902, + "CommandName": "Invoke-PnPSiteDesign", "Rank": 1 }, { - "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 901, + "Id": 903, + "CommandName": "Invoke-PnPSiteDesign", "Rank": 2 }, { - "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Id": 902, + "Id": 904, + "CommandName": "Invoke-PnPSiteScript", "Rank": 1 }, { - "CommandName": "Invoke-PnPSiteSwap", "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", - "Id": 903, + "Id": 905, + "CommandName": "Invoke-PnPSiteSwap", "Rank": 1 }, { - "CommandName": "Invoke-PnPSiteSwap", "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", - "Id": 904, + "Id": 906, + "CommandName": "Invoke-PnPSiteSwap", "Rank": 2 }, { - "CommandName": "Invoke-PnPSiteSwap", "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", - "Id": 905, + "Id": 907, + "CommandName": "Invoke-PnPSiteSwap", "Rank": 3 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Id": 906, + "Id": 908, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Id": 907, + "Id": 909, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 908, + "Id": 910, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Id": 909, + "Id": 911, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Id": 910, + "Id": 912, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Id": 911, + "Id": 913, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Id": 912, + "Id": 914, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7 }, { - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Id": 913, + "Id": 915, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8 }, { - "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Id": 914, + "Id": 916, + "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1 }, { - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Id": 915, + "Id": 917, + "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1 }, { - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Id": 916, + "Id": 918, + "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2 }, { - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 917, + "Id": 919, + "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3 }, { - "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Id": 918, + "Id": 920, + "CommandName": "Invoke-PnPWebAction", "Rank": 1 }, { - "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Id": 919, + "Id": 921, + "CommandName": "Invoke-PnPWebAction", "Rank": 2 }, { - "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", - "Id": 920, + "Id": 922, + "CommandName": "Measure-PnPList", "Rank": 1 }, { - "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Id": 921, + "Id": 923, + "CommandName": "Measure-PnPList", "Rank": 2 }, { - "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", - "Id": 922, + "Id": 924, + "CommandName": "Measure-PnPWeb", "Rank": 1 }, { - "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", - "Id": 923, + "Id": 925, + "CommandName": "Measure-PnPWeb", "Rank": 2 }, { - "CommandName": "Merge-PnPTerm", "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", - "Id": 924, + "Id": 926, + "CommandName": "Merge-PnPTerm", "Rank": 1 }, { - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Id": 925, + "Id": 927, + "CommandName": "Move-PnPFile", "Rank": 1 }, { - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Id": 926, + "Id": 928, + "CommandName": "Move-PnPFile", "Rank": 2 }, { - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 927, + "Id": 929, + "CommandName": "Move-PnPFile", "Rank": 3 }, { - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 928, + "Id": 930, + "CommandName": "Move-PnPFile", "Rank": 4 }, { - "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Id": 929, + "Id": 931, + "CommandName": "Move-PnPFolder", "Rank": 1 }, { - "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Id": 930, + "Id": 932, + "CommandName": "Move-PnPFolder", "Rank": 2 }, { - "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Id": 931, + "Id": 933, + "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1 }, { - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Id": 932, + "Id": 934, + "CommandName": "Move-PnPPageComponent", "Rank": 1 }, { - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Id": 933, + "Id": 935, + "CommandName": "Move-PnPPageComponent", "Rank": 2 }, { - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Id": 934, + "Id": 936, + "CommandName": "Move-PnPPageComponent", "Rank": 3 }, { - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Id": 935, + "Id": 937, + "CommandName": "Move-PnPPageComponent", "Rank": 4 }, { - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", - "Id": 936, + "Id": 938, + "CommandName": "Move-PnpRecycleBinItem", "Rank": 1 }, { - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Id": 937, + "Id": 939, + "CommandName": "Move-PnpRecycleBinItem", "Rank": 2 }, { - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", - "Id": 938, + "Id": 940, + "CommandName": "Move-PnpRecycleBinItem", "Rank": 3 }, { - "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", - "Id": 939, + "Id": 941, + "CommandName": "Move-PnPTerm", "Rank": 1 }, { - "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Id": 940, + "Id": 942, + "CommandName": "Move-PnPTerm", "Rank": 2 }, { - "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Id": 941, + "Id": 943, + "CommandName": "Move-PnPTerm", "Rank": 3 }, { - "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", - "Id": 942, + "Id": 944, + "CommandName": "Move-PnPTermSet", "Rank": 1 }, { - "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Id": 943, + "Id": 945, + "CommandName": "Move-PnPTermSet", "Rank": 2 }, { - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 944, + "Id": 946, + "CommandName": "New-PnPAzureADGroup", "Rank": 1 }, { - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Id": 945, + "Id": 947, + "CommandName": "New-PnPAzureADGroup", "Rank": 2 }, { - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Id": 946, + "Id": 948, + "CommandName": "New-PnPAzureADGroup", "Rank": 3 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Id": 947, + "Id": 949, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Id": 948, + "Id": 950, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Id": 949, + "Id": 951, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3 }, { - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Id": 950, + "Id": 952, + "CommandName": "New-PnPAzureCertificate", "Rank": 1 }, { - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Id": 951, + "Id": 953, + "CommandName": "New-PnPAzureCertificate", "Rank": 2 }, { - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Id": 952, + "Id": 954, + "CommandName": "New-PnPAzureCertificate", "Rank": 3 }, { - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", - "Id": 953, + "Id": 955, + "CommandName": "New-PnPAzureCertificate", "Rank": 4 }, { - "CommandName": "New-PnPContainerType", "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"", - "Id": 954, + "Id": 956, + "CommandName": "New-PnPContainerType", "Rank": 1 }, { - "CommandName": "New-PnPGraphSubscription", "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", - "Id": 955, + "Id": 957, + "CommandName": "New-PnPGraphSubscription", "Rank": 1 }, { - "CommandName": "New-PnPGraphSubscription", "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "Id": 956, + "Id": 958, + "CommandName": "New-PnPGraphSubscription", "Rank": 2 }, { - "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", - "Id": 957, + "Id": 959, + "CommandName": "New-PnPGroup", "Rank": 1 }, { - "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", - "Id": 958, + "Id": 960, + "CommandName": "New-PnPList", "Rank": 1 }, { - "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Id": 959, + "Id": 961, + "CommandName": "New-PnPList", "Rank": 2 }, { - "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Id": 960, + "Id": 962, + "CommandName": "New-PnPList", "Rank": 3 }, { - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 961, + "Id": 963, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 1 }, { - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Id": 962, + "Id": 964, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 2 }, { - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Id": 963, + "Id": 965, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 3 }, { - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Id": 964, + "Id": 966, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 4 }, { - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 965, + "Id": 967, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 5 }, { - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 966, + "Id": 968, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 6 }, { - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "Id": 967, + "Id": 969, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 7 }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", - "Id": 968, + "Id": 970, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 1 }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Id": 969, + "Id": 971, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 2 }, { - "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Id": 970, + "Id": 972, + "CommandName": "New-PnPPersonalSite", "Rank": 1 }, { - "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Id": 971, + "Id": 973, + "CommandName": "New-PnPPlannerPlan", "Rank": 1 }, { - "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Id": 972, + "Id": 974, + "CommandName": "New-PnPSdnProvider", "Rank": 1 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 973, + "Id": 975, + "CommandName": "New-PnPSite", "Rank": 1 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Id": 974, + "Id": 976, + "CommandName": "New-PnPSite", "Rank": 2 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 975, + "Id": 977, + "CommandName": "New-PnPSite", "Rank": 3 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 976, + "Id": 978, + "CommandName": "New-PnPSite", "Rank": 4 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 977, + "Id": 979, + "CommandName": "New-PnPSite", "Rank": 5 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 978, + "Id": 980, + "CommandName": "New-PnPSite", "Rank": 6 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Id": 979, + "Id": 981, + "CommandName": "New-PnPSite", "Rank": 7 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Id": 980, + "Id": 982, + "CommandName": "New-PnPSite", "Rank": 8 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Id": 981, + "Id": 983, + "CommandName": "New-PnPSite", "Rank": 9 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Id": 982, + "Id": 984, + "CommandName": "New-PnPSite", "Rank": 10 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 983, + "Id": 985, + "CommandName": "New-PnPSite", "Rank": 11 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 984, + "Id": 986, + "CommandName": "New-PnPSite", "Rank": 12 }, { + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 987, "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 985, "Rank": 13 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 986, + "Id": 988, + "CommandName": "New-PnPSite", "Rank": 14 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 987, + "Id": 989, + "CommandName": "New-PnPSite", "Rank": 15 }, { - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Id": 988, + "Id": 990, + "CommandName": "New-PnPSite", "Rank": 16 }, { - "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", - "Id": 989, + "Id": 991, + "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1 }, { - "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Id": 990, + "Id": 992, + "CommandName": "New-PnPSiteGroup", "Rank": 1 }, { - "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Id": 991, + "Id": 993, + "CommandName": "New-PnPSiteGroup", "Rank": 2 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Id": 992, + "Id": 994, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Id": 993, + "Id": 995, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Id": 994, + "Id": 996, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Id": 995, + "Id": 997, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Id": 996, + "Id": 998, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 5 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 997, + "Id": 999, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 6 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Id": 998, + "Id": 1000, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Id": 999, + "Id": 1001, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8 }, { - "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Id": 1000, + "Id": 1002, + "CommandName": "New-PnPTeamsApp", "Rank": 1 }, { - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Id": 1001, + "Id": 1003, + "CommandName": "New-PnPTeamsTeam", "Rank": 1 }, { - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Id": 1002, + "Id": 1004, + "CommandName": "New-PnPTeamsTeam", "Rank": 2 }, { - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Id": 1003, + "Id": 1005, + "CommandName": "New-PnPTeamsTeam", "Rank": 3 }, { - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 1004, + "Id": 1006, + "CommandName": "New-PnPTeamsTeam", "Rank": 4 }, { - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", - "Id": 1005, + "Id": 1007, + "CommandName": "New-PnPTeamsTeam", "Rank": 5 }, { - "CommandName": "New-PnPTeamsTeam", "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": 1006, + "Id": 1008, + "CommandName": "New-PnPTeamsTeam", "Rank": 6 }, { - "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", - "Id": 1007, + "Id": 1009, + "CommandName": "New-PnPTenantSite", "Rank": 1 }, { - "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Id": 1008, + "Id": 1010, + "CommandName": "New-PnPTenantSite", "Rank": 2 }, { - "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Id": 1009, + "Id": 1011, + "CommandName": "New-PnPTerm", "Rank": 1 }, { - "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1010, + "Id": 1012, + "CommandName": "New-PnPTerm", "Rank": 2 }, { - "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Id": 1011, + "Id": 1013, + "CommandName": "New-PnPTermGroup", "Rank": 1 }, { - "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Id": 1012, + "Id": 1014, + "CommandName": "New-PnPTermLabel", "Rank": 1 }, { - "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Id": 1013, + "Id": 1015, + "CommandName": "New-PnPTermSet", "Rank": 1 }, { - "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Id": 1014, + "Id": 1016, + "CommandName": "New-PnPUPABulkImportJob", "Rank": 1 }, { - "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", - "Id": 1015, + "Id": 1017, + "CommandName": "New-PnPUPABulkImportJob", "Rank": 2 }, { - "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", - "Id": 1016, + "Id": 1018, + "CommandName": "New-PnPUser", "Rank": 1 }, { - "CommandName": "New-PnPWeb", "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Id": 1017, + "Id": 1019, + "CommandName": "New-PnPWeb", "Rank": 1 }, { - "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 1018, + "Id": 1020, + "CommandName": "Publish-PnPApp", "Rank": 1 }, { - "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Id": 1019, + "Id": 1021, + "CommandName": "Publish-PnPApp", "Rank": 2 }, { - "CommandName": "Publish-PnPCompanyApp", "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": 1020, + "Id": 1022, + "CommandName": "Publish-PnPCompanyApp", "Rank": 1 }, { - "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", - "Id": 1021, + "Id": 1023, + "CommandName": "Publish-PnPContentType", "Rank": 1 }, { - "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 1022, + "Id": 1024, + "CommandName": "Publish-PnPSyntexModel", "Rank": 1 }, { - "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", - "Id": 1023, + "Id": 1025, + "CommandName": "Publish-PnPSyntexModel", "Rank": 2 }, { - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Id": 1024, + "Id": 1026, + "CommandName": "Read-PnPSiteTemplate", "Rank": 1 }, { - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Id": 1025, + "Id": 1027, + "CommandName": "Read-PnPSiteTemplate", "Rank": 2 }, { - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", - "Id": 1026, + "Id": 1028, + "CommandName": "Read-PnPSiteTemplate", "Rank": 3 }, { - "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Id": 1027, + "Id": 1029, + "CommandName": "Read-PnPTenantTemplate", "Rank": 1 }, { - "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Id": 1028, + "Id": 1030, + "CommandName": "Register-PnPAppCatalogSite", "Rank": 1 }, { - "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", - "Id": 1029, + "Id": 1031, + "CommandName": "Register-PnPAzureADApp", "Rank": 1 }, { - "CommandName": "Register-PnPAzureADApp", "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": 1030, + "Id": 1032, + "CommandName": "Register-PnPAzureADApp", "Rank": 2 }, { - "CommandName": "Register-PnPAzureADApp", "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": 1031, + "Id": 1033, + "CommandName": "Register-PnPAzureADApp", "Rank": 3 }, { - "CommandName": "Register-PnPAzureADApp", "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": 1032, + "Id": 1034, + "CommandName": "Register-PnPAzureADApp", "Rank": 4 }, { - "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Id": 1033, + "Id": 1035, + "CommandName": "Register-PnPAzureADApp", "Rank": 5 }, { - "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Id": 1034, + "Id": 1036, + "CommandName": "Register-PnPAzureADApp", "Rank": 6 }, { - "CommandName": "Register-PnPAzureADApp", "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": 1035, + "Id": 1037, + "CommandName": "Register-PnPAzureADApp", "Rank": 7 }, { - "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1036, + "Id": 1038, + "CommandName": "Register-PnPHubSite", "Rank": 1 }, { - "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Id": 1037, + "Id": 1039, + "CommandName": "Register-PnPHubSite", "Rank": 2 }, { - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", - "Id": 1038, + "Id": 1040, + "CommandName": "Register-PnPManagementShellAccess", "Rank": 1 }, { - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Id": 1039, + "Id": 1041, + "CommandName": "Register-PnPManagementShellAccess", "Rank": 2 }, { - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Id": 1040, + "Id": 1042, + "CommandName": "Register-PnPManagementShellAccess", "Rank": 3 }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Id": 1041, + "Id": 1043, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1 }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Id": 1042, + "Id": 1044, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2 }, { - "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Id": 1043, + "Id": 1045, + "CommandName": "Remove-PnPAlert", "Rank": 1 }, { - "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 1044, + "Id": 1046, + "CommandName": "Remove-PnPAlert", "Rank": 2 }, { - "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1045, + "Id": 1047, + "CommandName": "Remove-PnPApp", "Rank": 1 }, { - "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1046, + "Id": 1048, + "CommandName": "Remove-PnPApp", "Rank": 2 }, { - "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1047, + "Id": 1049, + "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1 }, { - "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1048, + "Id": 1050, + "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2 }, { + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Id": 1051, "CommandName": "Remove-PnPAvailableSiteClassification", - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Id": 1049, "Rank": 1 }, { - "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1050, + "Id": 1052, + "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2 }, { - "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Id": 1051, + "Id": 1053, + "CommandName": "Remove-PnPAzureADApp", "Rank": 1 }, { - "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 1052, + "Id": 1054, + "CommandName": "Remove-PnPAzureADApp", "Rank": 2 }, { - "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Id": 1053, + "Id": 1055, + "CommandName": "Remove-PnPAzureADGroup", "Rank": 1 }, { - "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", - "Id": 1054, + "Id": 1056, + "CommandName": "Remove-PnPAzureADGroup", "Rank": 2 }, { - "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1055, + "Id": 1057, + "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1 }, { - "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1056, + "Id": 1058, + "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Id": 1057, + "Id": 1059, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Id": 1058, + "Id": 1060, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 1059, + "Id": 1061, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 1060, + "Id": 1062, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4 }, { - "CommandName": "Remove-PnPContainer", "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", - "Id": 1061, + "Id": 1063, + "CommandName": "Remove-PnPContainer", "Rank": 1 }, { - "CommandName": "Remove-PnPContainer", "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", - "Id": 1062, + "Id": 1064, + "CommandName": "Remove-PnPContainer", "Rank": 2 }, { - "CommandName": "Remove-PnPContainerType", "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6", - "Id": 1063, + "Id": 1065, + "CommandName": "Remove-PnPContainerType", "Rank": 1 }, { - "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Id": 1064, + "Id": 1066, + "CommandName": "Remove-PnPContentType", "Rank": 1 }, { - "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Id": 1065, + "Id": 1067, + "CommandName": "Remove-PnPContentType", "Rank": 2 }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 1066, + "Id": 1068, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1 }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 1067, + "Id": 1069, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2 }, { - "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Id": 1068, + "Id": 1070, + "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1 }, { - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1069, + "Id": 1071, + "CommandName": "Remove-PnPCustomAction", "Rank": 1 }, { - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1070, + "Id": 1072, + "CommandName": "Remove-PnPCustomAction", "Rank": 2 }, { - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Id": 1071, + "Id": 1073, + "CommandName": "Remove-PnPCustomAction", "Rank": 3 }, { - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1072, + "Id": 1074, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1 }, { - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1073, + "Id": 1075, + "CommandName": "Remove-PnPEventReceiver", "Rank": 1 }, { - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1074, + "Id": 1076, + "CommandName": "Remove-PnPEventReceiver", "Rank": 2 }, { - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Id": 1075, + "Id": 1077, + "CommandName": "Remove-PnPEventReceiver", "Rank": 3 }, { - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", - "Id": 1076, + "Id": 1078, + "CommandName": "Remove-PnPEventReceiver", "Rank": 4 }, { - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", - "Id": 1077, + "Id": 1079, + "CommandName": "Remove-PnPEventReceiver", "Rank": 5 }, { - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", - "Id": 1078, + "Id": 1080, + "CommandName": "Remove-PnPEventReceiver", "Rank": 6 }, { - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", - "Id": 1079, + "Id": 1081, + "CommandName": "Remove-PnPEventReceiver", "Rank": 7 }, { - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", - "Id": 1080, + "Id": 1082, + "CommandName": "Remove-PnPEventReceiver", "Rank": 8 }, { - "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", - "Id": 1081, + "Id": 1083, + "CommandName": "Remove-PnPField", "Rank": 1 }, { - "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 1082, + "Id": 1084, + "CommandName": "Remove-PnPField", "Rank": 2 }, { - "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 1083, + "Id": 1085, + "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1 }, { - "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Id": 1084, + "Id": 1086, + "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2 }, { - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Id": 1085, + "Id": 1087, + "CommandName": "Remove-PnPFile", "Rank": 1 }, { - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Id": 1086, + "Id": 1088, + "CommandName": "Remove-PnPFile", "Rank": 2 }, { - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Id": 1087, + "Id": 1089, + "CommandName": "Remove-PnPFile", "Rank": 3 }, { - "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Id": 1088, + "Id": 1090, + "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1 }, { - "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 1089, + "Id": 1091, + "CommandName": "Remove-PnPFileSharingLink", "Rank": 1 }, { - "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Id": 1090, + "Id": 1092, + "CommandName": "Remove-PnPFileSharingLink", "Rank": 2 }, { - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1091, + "Id": 1093, + "CommandName": "Remove-PnPFileVersion", "Rank": 1 }, { - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1092, + "Id": 1094, + "CommandName": "Remove-PnPFileVersion", "Rank": 2 }, { - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Id": 1093, + "Id": 1095, + "CommandName": "Remove-PnPFileVersion", "Rank": 3 }, { - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "Id": 1094, + "Id": 1096, + "CommandName": "Remove-PnPFlowOwner", "Rank": 1 }, { - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "Id": 1095, + "Id": 1097, + "CommandName": "Remove-PnPFlowOwner", "Rank": 2 }, { - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "Id": 1096, + "Id": 1098, + "CommandName": "Remove-PnPFlowOwner", "Rank": 3 }, { - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "Id": 1097, + "Id": 1099, + "CommandName": "Remove-PnPFlowOwner", "Rank": 4 }, { - "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 1098, + "Id": 1100, + "CommandName": "Remove-PnPFolder", "Rank": 1 }, { - "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Id": 1099, + "Id": 1101, + "CommandName": "Remove-PnPFolder", "Rank": 2 }, { - "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 1100, + "Id": 1102, + "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1 }, { - "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Id": 1101, + "Id": 1103, + "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2 }, { - "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Id": 1102, + "Id": 1104, + "CommandName": "Remove-PnPGraphSubscription", "Rank": 1 }, { - "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Id": 1103, + "Id": 1105, + "CommandName": "Remove-PnPGroup", "Rank": 1 }, { - "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 1104, + "Id": 1106, + "CommandName": "Remove-PnPGroupMember", "Rank": 1 }, { - "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", - "Id": 1105, + "Id": 1107, + "CommandName": "Remove-PnPHomeSite", "Rank": 1 }, { - "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1106, + "Id": 1108, + "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1 }, { - "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Id": 1107, + "Id": 1109, + "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1 }, { - "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Id": 1108, + "Id": 1110, + "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2 }, { - "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Id": 1109, + "Id": 1111, + "CommandName": "Remove-PnPIndexedProperty", "Rank": 1 }, { - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Id": 1110, + "Id": 1112, + "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1 }, { - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Id": 1111, + "Id": 1113, + "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2 }, { - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Id": 1112, + "Id": 1114, + "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3 }, { + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Id": 1115, "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Id": 1113, "Rank": 4 }, { - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Id": 1114, + "Id": 1116, + "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5 }, { - "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", - "Id": 1115, + "Id": 1117, + "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1 }, { - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", - "Id": 1116, + "Id": 1118, + "CommandName": "Remove-PnPList", "Rank": 1 }, { - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", - "Id": 1117, + "Id": 1119, + "CommandName": "Remove-PnPList", "Rank": 2 }, { - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Id": 1118, + "Id": 1120, + "CommandName": "Remove-PnPList", "Rank": 3 }, { - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Id": 1119, + "Id": 1121, + "CommandName": "Remove-PnPList", "Rank": 4 }, { - "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1120, + "Id": 1122, + "CommandName": "Remove-PnPListDesign", "Rank": 1 }, { - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Id": 1121, + "Id": 1123, + "CommandName": "Remove-PnPListItem", "Rank": 1 }, { - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Id": 1122, + "Id": 1124, + "CommandName": "Remove-PnPListItem", "Rank": 2 }, { - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", - "Id": 1123, + "Id": 1125, + "CommandName": "Remove-PnPListItem", "Rank": 3 }, { - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Id": 1124, + "Id": 1126, + "CommandName": "Remove-PnPListItemAttachment", "Rank": 1 }, { - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Id": 1125, + "Id": 1127, + "CommandName": "Remove-PnPListItemAttachment", "Rank": 2 }, { - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Id": 1126, + "Id": 1128, + "CommandName": "Remove-PnPListItemAttachment", "Rank": 3 }, { - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Id": 1127, + "Id": 1129, + "CommandName": "Remove-PnPListItemAttachment", "Rank": 4 }, { - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Id": 1128, + "Id": 1130, + "CommandName": "Remove-PnPListItemAttachment", "Rank": 5 }, { - "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1129, + "Id": 1131, + "CommandName": "Remove-PnPListItemVersion", "Rank": 1 }, { - "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1130, + "Id": 1132, + "CommandName": "Remove-PnPListItemVersion", "Rank": 2 }, { - "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Id": 1131, + "Id": 1133, + "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1 }, { - "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Id": 1132, + "Id": 1134, + "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2 }, { - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1133, + "Id": 1135, + "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1 }, { - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1134, + "Id": 1136, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1 }, { - "CommandName": "Remove-PnPMicrosoft365GroupPhoto", "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", - "Id": 1135, + "Id": 1137, + "CommandName": "Remove-PnPMicrosoft365GroupPhoto", "Rank": 1 }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Id": 1136, + "Id": 1138, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1 }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Id": 1137, + "Id": 1139, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2 }, { - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", - "Id": 1138, + "Id": 1140, + "CommandName": "Remove-PnPNavigationNode", "Rank": 1 }, { - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Id": 1139, + "Id": 1141, + "CommandName": "Remove-PnPNavigationNode", "Rank": 2 }, { - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Id": 1140, + "Id": 1142, + "CommandName": "Remove-PnPNavigationNode", "Rank": 3 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Id": 1141, + "Id": 1143, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Id": 1142, + "Id": 1144, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Id": 1143, + "Id": 1145, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3 }, { - "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1144, + "Id": 1146, + "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1 }, { - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Id": 1145, + "Id": 1147, + "CommandName": "Remove-PnPPage", "Rank": 1 }, { - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Id": 1146, + "Id": 1148, + "CommandName": "Remove-PnPPage", "Rank": 2 }, { - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", - "Id": 1147, + "Id": 1149, + "CommandName": "Remove-PnPPage", "Rank": 3 }, { - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Id": 1148, + "Id": 1150, + "CommandName": "Remove-PnPPage", "Rank": 4 }, { - "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1149, + "Id": 1151, + "CommandName": "Remove-PnPPageComponent", "Rank": 1 }, { - "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Id": 1150, + "Id": 1152, + "CommandName": "Remove-PnPPlannerBucket", "Rank": 1 }, { - "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Id": 1151, + "Id": 1153, + "CommandName": "Remove-PnPPlannerPlan", "Rank": 1 }, { - "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 1152, + "Id": 1154, + "CommandName": "Remove-PnPPlannerRoster", "Rank": 1 }, { - "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1153, + "Id": 1155, + "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1 }, { - "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Id": 1154, + "Id": 1156, + "CommandName": "Remove-PnPPlannerTask", "Rank": 1 }, { - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Id": 1155, + "Id": 1157, + "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1 }, { - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Id": 1156, + "Id": 1158, + "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2 }, { - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Id": 1157, + "Id": 1159, + "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3 }, { - "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 1158, + "Id": 1160, + "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1 }, { - "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Id": 1159, + "Id": 1161, + "CommandName": "Remove-PnPRoleDefinition", "Rank": 1 }, { - "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", - "Id": 1160, + "Id": 1162, + "CommandName": "Remove-PnPSdnProvider", "Rank": 1 }, { - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Id": 1161, + "Id": 1163, + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1 }, { - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1162, + "Id": 1164, + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2 }, { - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1163, + "Id": 1165, + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3 }, { - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1164, + "Id": 1166, + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4 }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1165, + "Id": 1167, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1 }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1166, + "Id": 1168, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2 }, { - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 1167, + "Id": 1169, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1 }, { - "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", - "Id": 1168, + "Id": 1170, + "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1 }, { - "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1169, + "Id": 1171, + "CommandName": "Remove-PnPSiteDesign", "Rank": 1 }, { - "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1170, + "Id": 1172, + "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1 }, { - "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1171, + "Id": 1173, + "CommandName": "Remove-PnPSiteGroup", "Rank": 1 }, { - "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Id": 1172, + "Id": 1174, + "CommandName": "Remove-PnPSiteGroup", "Rank": 2 }, { - "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1173, + "Id": 1175, + "CommandName": "Remove-PnPSiteScript", "Rank": 1 }, { - "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 1174, + "Id": 1176, + "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1 }, { - "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", - "Id": 1175, + "Id": 1177, + "CommandName": "Remove-PnPStorageEntity", "Rank": 1 }, { - "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 1176, + "Id": 1178, + "CommandName": "Remove-PnPStorageEntity", "Rank": 2 }, { + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Id": 1179, "CommandName": "Remove-PnPStoredCredential", - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Id": 1177, "Rank": 1 }, { - "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Id": 1178, + "Id": 1180, + "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1 }, { - "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Id": 1179, + "Id": 1181, + "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2 }, { - "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Id": 1180, + "Id": 1182, + "CommandName": "Remove-PnPTeamsApp", "Rank": 1 }, { - "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Id": 1181, + "Id": 1183, + "CommandName": "Remove-PnPTeamsApp", "Rank": 2 }, { - "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Id": 1182, + "Id": 1184, + "CommandName": "Remove-PnPTeamsChannel", "Rank": 1 }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Id": 1183, + "Id": 1185, + "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1 }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 1184, + "Id": 1186, + "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2 }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Id": 1185, + "Id": 1187, + "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3 }, { - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Id": 1186, + "Id": 1188, + "CommandName": "Remove-PnPTeamsTab", "Rank": 1 }, { - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Id": 1187, + "Id": 1189, + "CommandName": "Remove-PnPTeamsTab", "Rank": 2 }, { - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "Id": 1188, + "Id": 1190, + "CommandName": "Remove-PnPTeamsTab", "Rank": 3 }, { - "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 1189, + "Id": 1191, + "CommandName": "Remove-PnPTeamsTag", "Rank": 1 }, { - "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 1190, + "Id": 1192, + "CommandName": "Remove-PnPTeamsTeam", "Rank": 1 }, { - "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Id": 1191, + "Id": 1193, + "CommandName": "Remove-PnPTeamsTeam", "Rank": 2 }, { - "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Id": 1192, + "Id": 1194, + "CommandName": "Remove-PnPTeamsUser", "Rank": 1 }, { - "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1193, + "Id": 1195, + "CommandName": "Remove-PnPTeamsUser", "Rank": 2 }, { - "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 1194, + "Id": 1196, + "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1 }, { - "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1195, + "Id": 1197, + "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1 }, { - "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1196, + "Id": 1198, + "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2 }, { - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1197, + "Id": 1199, + "CommandName": "Remove-PnPTenantSite", "Rank": 1 }, { - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Id": 1198, + "Id": 1200, + "CommandName": "Remove-PnPTenantSite", "Rank": 2 }, { - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Id": 1199, + "Id": 1201, + "CommandName": "Remove-PnPTenantSite", "Rank": 3 }, { - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", - "Id": 1200, + "Id": 1202, + "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1 }, { - "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 1201, + "Id": 1203, + "CommandName": "Remove-PnPTenantTheme", "Rank": 1 }, { - "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1202, + "Id": 1204, + "CommandName": "Remove-PnPTerm", "Rank": 1 }, { - "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1203, + "Id": 1205, + "CommandName": "Remove-PnPTerm", "Rank": 2 }, { - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1204, + "Id": 1206, + "CommandName": "Remove-PnPTermGroup", "Rank": 1 }, { - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Id": 1205, + "Id": 1207, + "CommandName": "Remove-PnPTermGroup", "Rank": 2 }, { - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Id": 1206, + "Id": 1208, + "CommandName": "Remove-PnPTermGroup", "Rank": 3 }, { - "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Id": 1207, + "Id": 1209, + "CommandName": "Remove-PnPTermLabel", "Rank": 1 }, { - "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1208, + "Id": 1210, + "CommandName": "Remove-PnPTermLabel", "Rank": 2 }, { - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", - "Id": 1209, + "Id": 1211, + "CommandName": "Remove-PnPUser", "Rank": 1 }, { - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Id": 1210, + "Id": 1212, + "CommandName": "Remove-PnPUser", "Rank": 2 }, { - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Id": 1211, + "Id": 1213, + "CommandName": "Remove-PnPUser", "Rank": 3 }, { - "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 1212, + "Id": 1214, + "CommandName": "Remove-PnPUserInfo", "Rank": 1 }, { - "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Id": 1213, + "Id": 1215, + "CommandName": "Remove-PnPUserProfile", "Rank": 1 }, { - "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Id": 1214, + "Id": 1216, + "CommandName": "Remove-PnPView", "Rank": 1 }, { - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 1215, + "Id": 1217, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1 }, { - "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", - "Id": 1216, + "Id": 1218, + "CommandName": "Remove-PnPWeb", "Rank": 1 }, { - "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Id": 1217, + "Id": 1219, + "CommandName": "Remove-PnPWeb", "Rank": 2 }, { - "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Id": 1218, + "Id": 1220, + "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1 }, { - "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1219, + "Id": 1221, + "CommandName": "Remove-PnPWebPart", "Rank": 1 }, { - "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Id": 1220, + "Id": 1222, + "CommandName": "Remove-PnPWebPart", "Rank": 2 }, { - "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Id": 1221, + "Id": 1223, + "CommandName": "Remove-PnPWikiPage", "Rank": 1 }, { - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Id": 1222, + "Id": 1224, + "CommandName": "Rename-PnPFile", "Rank": 1 }, { - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Id": 1223, + "Id": 1225, + "CommandName": "Rename-PnPFile", "Rank": 2 }, { - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Id": 1224, + "Id": 1226, + "CommandName": "Rename-PnPFile", "Rank": 3 }, { - "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Id": 1225, + "Id": 1227, + "CommandName": "Rename-PnPFolder", "Rank": 1 }, { - "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1226, + "Id": 1228, + "CommandName": "Repair-PnPSite", "Rank": 1 }, { - "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1227, + "Id": 1229, + "CommandName": "Repair-PnPSite", "Rank": 2 }, { - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", - "Id": 1228, + "Id": 1230, + "CommandName": "Request-PnPAccessToken", "Rank": 1 }, { - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Id": 1229, + "Id": 1231, + "CommandName": "Request-PnPAccessToken", "Rank": 2 }, { - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Id": 1230, + "Id": 1232, + "CommandName": "Request-PnPAccessToken", "Rank": 3 }, { - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Id": 1231, + "Id": 1233, + "CommandName": "Request-PnPAccessToken", "Rank": 4 }, { - "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Id": 1232, + "Id": 1234, + "CommandName": "Request-PnPPersonalSite", "Rank": 1 }, { - "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Id": 1233, + "Id": 1235, + "CommandName": "Request-PnPPersonalSite", "Rank": 2 }, { - "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Id": 1234, + "Id": 1236, + "CommandName": "Request-PnPReIndexList", "Rank": 1 }, { - "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", - "Id": 1235, + "Id": 1237, + "CommandName": "Request-PnPReIndexWeb", "Rank": 1 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Id": 1236, + "Id": 1238, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Id": 1237, + "Id": 1239, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Id": 1238, + "Id": 1240, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3 }, { - "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Id": 1239, + "Id": 1241, + "CommandName": "Reset-PnPFileVersion", "Rank": 1 }, { - "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Id": 1240, + "Id": 1242, + "CommandName": "Reset-PnPFileVersion", "Rank": 2 }, { + "Command": "Reset-PnPLabel -List \"Demo List\"", + "Id": 1243, "CommandName": "Reset-PnPLabel", - "Command": "Reset-PnPLabel -List \"Demo List\"", - "Id": 1241, "Rank": 1 }, { - "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Id": 1242, + "Id": 1244, + "CommandName": "Reset-PnPLabel", "Rank": 2 }, { - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1243, + "Id": 1245, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1 }, { - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Id": 1244, + "Id": 1246, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1 }, { - "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Id": 1245, + "Id": 1247, + "CommandName": "Resolve-PnPFolder", "Rank": 1 }, { - "CommandName": "Restore-PnPDeletedContainer", "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", - "Id": 1246, + "Id": 1248, + "CommandName": "Restore-PnPDeletedContainer", "Rank": 1 }, { - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1247, + "Id": 1249, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1 }, { - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1248, + "Id": 1250, + "CommandName": "Restore-PnPFileVersion", "Rank": 1 }, { - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Id": 1249, + "Id": 1251, + "CommandName": "Restore-PnPFileVersion", "Rank": 2 }, { - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1250, + "Id": 1252, + "CommandName": "Restore-PnPFileVersion", "Rank": 3 }, { - "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1251, + "Id": 1253, + "CommandName": "Restore-PnPListItemVersion", "Rank": 1 }, { - "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1252, + "Id": 1254, + "CommandName": "Restore-PnPListItemVersion", "Rank": 2 }, { - "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 1253, + "Id": 1255, + "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1 }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1254, + "Id": 1256, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1 }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 1255, + "Id": 1257, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2 }, { - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1256, + "Id": 1258, + "CommandName": "Restore-PnPTenantSite", "Rank": 1 }, { - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1257, + "Id": 1259, + "CommandName": "Restore-PnPTenantSite", "Rank": 2 }, { - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Id": 1258, + "Id": 1260, + "CommandName": "Restore-PnPTenantSite", "Rank": 3 }, { - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Id": 1259, + "Id": 1261, + "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1 }, { - "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1260, + "Id": 1262, + "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1 }, { - "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1261, + "Id": 1263, + "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1 }, { - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 1262, + "Id": 1264, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1 }, { - "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Id": 1263, + "Id": 1265, + "CommandName": "Revoke-PnPUserSession", "Rank": 1 }, { - "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", - "Id": 1264, + "Id": 1266, + "CommandName": "Save-PnPPageConversionLog", "Rank": 1 }, { - "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Id": 1265, + "Id": 1267, + "CommandName": "Save-PnPSiteTemplate", "Rank": 1 }, { - "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Id": 1266, + "Id": 1268, + "CommandName": "Save-PnPTenantTemplate", "Rank": 1 }, { - "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Id": 1267, + "Id": 1269, + "CommandName": "Send-PnPMail", "Rank": 1 }, { - "CommandName": "Send-PnPMail", "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": 1268, + "Id": 1270, + "CommandName": "Send-PnPMail", "Rank": 2 }, { - "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Id": 1269, + "Id": 1271, + "CommandName": "Send-PnPMail", "Rank": 3 }, { - "CommandName": "Send-PnPMail", "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": 1270, + "Id": 1272, + "CommandName": "Send-PnPMail", "Rank": 4 }, { - "CommandName": "Send-PnPMail", "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": 1271, + "Id": 1273, + "CommandName": "Send-PnPMail", "Rank": 5 }, { - "CommandName": "Send-PnPMail", "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": 1272, + "Id": 1274, + "CommandName": "Send-PnPMail", "Rank": 6 }, { - "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Id": 1273, + "Id": 1275, + "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1 }, { - "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1274, + "Id": 1276, + "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1 }, { - "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Id": 1275, + "Id": 1277, + "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2 }, { - "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", - "Id": 1276, + "Id": 1278, + "CommandName": "Set-PnPAppSideLoading", "Rank": 1 }, { - "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", - "Id": 1277, + "Id": 1279, + "CommandName": "Set-PnPAppSideLoading", "Rank": 2 }, { - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", - "Id": 1278, + "Id": 1280, + "CommandName": "Set-PnPAuditing", "Rank": 1 }, { - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", - "Id": 1279, + "Id": 1281, + "CommandName": "Set-PnPAuditing", "Rank": 2 }, { - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", - "Id": 1280, + "Id": 1282, + "CommandName": "Set-PnPAuditing", "Rank": 3 }, { - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", - "Id": 1281, + "Id": 1283, + "CommandName": "Set-PnPAuditing", "Rank": 4 }, { - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Id": 1282, + "Id": 1284, + "CommandName": "Set-PnPAuditing", "Rank": 5 }, { - "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Id": 1283, + "Id": 1285, + "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1 }, { - "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Id": 1284, + "Id": 1286, + "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1 }, { - "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Id": 1285, + "Id": 1287, + "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2 }, { - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1286, + "Id": 1288, + "CommandName": "Set-PnPAzureADGroup", "Rank": 1 }, { - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1287, + "Id": 1289, + "CommandName": "Set-PnPAzureADGroup", "Rank": 2 }, { - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Id": 1288, + "Id": 1290, + "CommandName": "Set-PnPAzureADGroup", "Rank": 3 }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Id": 1289, + "Id": 1291, + "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1 }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Id": 1290, + "Id": 1292, + "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2 }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Id": 1291, + "Id": 1293, + "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3 }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Id": 1292, + "Id": 1294, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1 }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Id": 1293, + "Id": 1295, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Id": 1294, + "Id": 1296, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Id": 1295, + "Id": 1297, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Id": 1296, + "Id": 1298, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Id": 1297, + "Id": 1299, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4 }, { - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1298, + "Id": 1300, + "CommandName": "Set-PnPContentType", "Rank": 1 }, { - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Id": 1299, + "Id": 1301, + "CommandName": "Set-PnPContentType", "Rank": 2 }, { - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1300, + "Id": 1302, + "CommandName": "Set-PnPContentType", "Rank": 3 }, { - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1301, + "Id": 1303, + "CommandName": "Set-PnPContentType", "Rank": 4 }, { - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1302, + "Id": 1304, + "CommandName": "Set-PnPContentType", "Rank": 5 }, { - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Id": 1303, + "Id": 1305, + "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1 }, { - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Id": 1304, + "Id": 1306, + "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2 }, { + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Id": 1307, "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Id": 1305, "Rank": 3 }, { - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Id": 1306, + "Id": 1308, + "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4 }, { - "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Id": 1307, + "Id": 1309, + "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1 }, { - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Id": 1308, + "Id": 1310, + "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1 }, { - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Id": 1309, + "Id": 1311, + "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2 }, { - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Id": 1310, + "Id": 1312, + "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3 }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Id": 1311, + "Id": 1313, + "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1 }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1312, + "Id": 1314, + "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2 }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1313, + "Id": 1315, + "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3 }, { - "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Id": 1314, + "Id": 1316, + "CommandName": "Set-PnPDocumentSetField", "Rank": 1 }, { - "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Id": 1315, + "Id": 1317, + "CommandName": "Set-PnPDocumentSetField", "Rank": 2 }, { - "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Id": 1316, + "Id": 1318, + "CommandName": "Set-PnPField", "Rank": 1 }, { - "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Id": 1317, + "Id": 1319, + "CommandName": "Set-PnPField", "Rank": 2 }, { - "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Id": 1318, + "Id": 1320, + "CommandName": "Set-PnPField", "Rank": 3 }, { - "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Id": 1319, + "Id": 1321, + "CommandName": "Set-PnPFileCheckedIn", "Rank": 1 }, { - "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Id": 1320, + "Id": 1322, + "CommandName": "Set-PnPFileCheckedIn", "Rank": 2 }, { - "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Id": 1321, + "Id": 1323, + "CommandName": "Set-PnPFileCheckedOut", "Rank": 1 }, { - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1322, + "Id": 1324, + "CommandName": "Set-PnPFolderPermission", "Rank": 1 }, { - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1323, + "Id": 1325, + "CommandName": "Set-PnPFolderPermission", "Rank": 2 }, { - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1324, + "Id": 1326, + "CommandName": "Set-PnPFolderPermission", "Rank": 3 }, { - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", - "Id": 1325, + "Id": 1327, + "CommandName": "Set-PnPFooter", "Rank": 1 }, { - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Id": 1326, + "Id": 1328, + "CommandName": "Set-PnPFooter", "Rank": 2 }, { - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Id": 1327, + "Id": 1329, + "CommandName": "Set-PnPFooter", "Rank": 3 }, { - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", - "Id": 1328, + "Id": 1330, + "CommandName": "Set-PnPFooter", "Rank": 4 }, { - "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Id": 1329, + "Id": 1331, + "CommandName": "Set-PnPGraphSubscription", "Rank": 1 }, { - "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Id": 1330, + "Id": 1332, + "CommandName": "Set-PnPGroup", "Rank": 1 }, { - "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Id": 1331, + "Id": 1333, + "CommandName": "Set-PnPGroup", "Rank": 2 }, { - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Id": 1332, + "Id": 1334, + "CommandName": "Set-PnPGroupPermissions", "Rank": 1 }, { - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Id": 1333, + "Id": 1335, + "CommandName": "Set-PnPGroupPermissions", "Rank": 2 }, { - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Id": 1334, + "Id": 1336, + "CommandName": "Set-PnPGroupPermissions", "Rank": 3 }, { - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Id": 1335, + "Id": 1337, + "CommandName": "Set-PnPGroupPermissions", "Rank": 4 }, { - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Id": 1336, + "Id": 1338, + "CommandName": "Set-PnPGroupPermissions", "Rank": 5 }, { - "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Id": 1337, + "Id": 1339, + "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1 }, { - "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Id": 1338, + "Id": 1340, + "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2 }, { - "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Id": 1339, + "Id": 1341, + "CommandName": "Set-PnPHomePage", "Rank": 1 }, { - "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Id": 1340, + "Id": 1342, + "CommandName": "Set-PnPHomePage", "Rank": 2 }, { - "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Id": 1341, + "Id": 1343, + "CommandName": "Set-PnPHomeSite", "Rank": 1 }, { - "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Id": 1342, + "Id": 1344, + "CommandName": "Set-PnPHomeSite", "Rank": 2 }, { - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Id": 1343, + "Id": 1345, + "CommandName": "Set-PnPHubSite", "Rank": 1 }, { - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Id": 1344, + "Id": 1346, + "CommandName": "Set-PnPHubSite", "Rank": 2 }, { - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Id": 1345, + "Id": 1347, + "CommandName": "Set-PnPHubSite", "Rank": 3 }, { - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Id": 1346, + "Id": 1348, + "CommandName": "Set-PnPHubSite", "Rank": 4 }, { - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Id": 1347, + "Id": 1349, + "CommandName": "Set-PnPHubSite", "Rank": 5 }, { - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Id": 1348, + "Id": 1350, + "CommandName": "Set-PnPHubSite", "Rank": 6 }, { - "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Id": 1349, + "Id": 1351, + "CommandName": "Set-PnPImageListItemColumn", "Rank": 1 }, { - "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Id": 1350, + "Id": 1352, + "CommandName": "Set-PnPImageListItemColumn", "Rank": 2 }, { - "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Id": 1351, + "Id": 1353, + "CommandName": "Set-PnPIndexedProperties", "Rank": 1 }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Id": 1352, + "Id": 1354, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1 }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Id": 1353, + "Id": 1355, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2 }, { - "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Id": 1354, + "Id": 1356, + "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1 }, { - "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Id": 1355, + "Id": 1357, + "CommandName": "Set-PnPLabel", "Rank": 1 }, { - "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Id": 1356, + "Id": 1358, + "CommandName": "Set-PnPLabel", "Rank": 2 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Id": 1357, + "Id": 1359, + "CommandName": "Set-PnPList", "Rank": 1 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Id": 1358, + "Id": 1360, + "CommandName": "Set-PnPList", "Rank": 2 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Id": 1359, + "Id": 1361, + "CommandName": "Set-PnPList", "Rank": 3 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Id": 1360, + "Id": 1362, + "CommandName": "Set-PnPList", "Rank": 4 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Id": 1361, + "Id": 1363, + "CommandName": "Set-PnPList", "Rank": 5 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Id": 1362, + "Id": 1364, + "CommandName": "Set-PnPList", "Rank": 6 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Id": 1363, + "Id": 1365, + "CommandName": "Set-PnPList", "Rank": 7 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Id": 1364, + "Id": 1366, + "CommandName": "Set-PnPList", "Rank": 8 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Id": 1365, + "Id": 1367, + "CommandName": "Set-PnPList", "Rank": 9 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Id": 1366, + "Id": 1368, + "CommandName": "Set-PnPList", "Rank": 10 }, { - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Id": 1367, + "Id": 1369, + "CommandName": "Set-PnPList", "Rank": 11 }, { - "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Id": 1368, + "Id": 1370, + "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1 }, { + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Id": 1371, "CommandName": "Set-PnPListInformationRightsManagement", - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Id": 1369, "Rank": 2 }, { - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1370, + "Id": 1372, + "CommandName": "Set-PnPListItem", "Rank": 1 }, { - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1371, + "Id": 1373, + "CommandName": "Set-PnPListItem", "Rank": 2 }, { - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1372, + "Id": 1374, + "CommandName": "Set-PnPListItem", "Rank": 3 }, { - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Id": 1373, + "Id": 1375, + "CommandName": "Set-PnPListItem", "Rank": 4 }, { - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Id": 1374, + "Id": 1376, + "CommandName": "Set-PnPListItem", "Rank": 5 }, { - "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 1375, + "Id": 1377, + "CommandName": "Set-PnPListItemAsRecord", "Rank": 1 }, { - "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Id": 1376, + "Id": 1378, + "CommandName": "Set-PnPListItemAsRecord", "Rank": 2 }, { - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1377, + "Id": 1379, + "CommandName": "Set-PnPListItemPermission", "Rank": 1 }, { - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1378, + "Id": 1380, + "CommandName": "Set-PnPListItemPermission", "Rank": 2 }, { - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1379, + "Id": 1381, + "CommandName": "Set-PnPListItemPermission", "Rank": 3 }, { - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Id": 1380, + "Id": 1382, + "CommandName": "Set-PnPListItemPermission", "Rank": 4 }, { - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Id": 1381, + "Id": 1383, + "CommandName": "Set-PnPListItemPermission", "Rank": 5 }, { - "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1382, + "Id": 1384, + "CommandName": "Set-PnPListPermission", "Rank": 1 }, { - "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1383, + "Id": 1385, + "CommandName": "Set-PnPListPermission", "Rank": 2 }, { - "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Id": 1384, + "Id": 1386, + "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1 }, { - "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Id": 1385, + "Id": 1387, + "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2 }, { - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1386, + "Id": 1388, + "CommandName": "Set-PnPMasterPage", "Rank": 1 }, { - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1387, + "Id": 1389, + "CommandName": "Set-PnPMasterPage", "Rank": 2 }, { - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1388, + "Id": 1390, + "CommandName": "Set-PnPMasterPage", "Rank": 3 }, { - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1389, + "Id": 1391, + "CommandName": "Set-PnPMasterPage", "Rank": 4 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Id": 1390, + "Id": 1392, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1391, + "Id": 1393, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1392, + "Id": 1394, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Id": 1393, + "Id": 1395, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1394, + "Id": 1396, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1395, + "Id": 1397, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Id": 1396, + "Id": 1398, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1397, + "Id": 1399, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1398, + "Id": 1400, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Id": 1399, + "Id": 1401, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1400, + "Id": 1402, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1401, + "Id": 1403, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Id": 1402, + "Id": 1404, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Id": 1403, + "Id": 1405, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1404, + "Id": 1406, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Id": 1405, + "Id": 1407, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Id": 1406, + "Id": 1408, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1407, + "Id": 1409, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1408, + "Id": 1410, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1409, + "Id": 1411, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Id": 1410, + "Id": 1412, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Id": 1411, + "Id": 1413, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Id": 1412, + "Id": 1414, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5 }, { - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 1413, + "Id": 1415, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6 }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Id": 1414, + "Id": 1416, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1 }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Id": 1415, + "Id": 1417, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2 }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Id": 1416, + "Id": 1418, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 1 }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", - "Id": 1417, + "Id": 1419, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 2 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Id": 1418, + "Id": 1420, + "CommandName": "Set-PnPPage", "Rank": 1 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Id": 1419, + "Id": 1421, + "CommandName": "Set-PnPPage", "Rank": 2 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Id": 1420, + "Id": 1422, + "CommandName": "Set-PnPPage", "Rank": 3 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Id": 1421, + "Id": 1423, + "CommandName": "Set-PnPPage", "Rank": 4 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Id": 1422, + "Id": 1424, + "CommandName": "Set-PnPPage", "Rank": 5 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Id": 1423, + "Id": 1425, + "CommandName": "Set-PnPPage", "Rank": 6 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 1424, + "Id": 1426, + "CommandName": "Set-PnPPage", "Rank": 7 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Id": 1425, + "Id": 1427, + "CommandName": "Set-PnPPage", "Rank": 8 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 1426, + "Id": 1428, + "CommandName": "Set-PnPPage", "Rank": 9 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 1427, + "Id": 1429, + "CommandName": "Set-PnPPage", "Rank": 10 }, { - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Id": 1428, + "Id": 1430, + "CommandName": "Set-PnPPage", "Rank": 11 }, { - "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Id": 1429, + "Id": 1431, + "CommandName": "Set-PnPPageTextPart", "Rank": 1 }, { - "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Id": 1430, + "Id": 1432, + "CommandName": "Set-PnPPageWebPart", "Rank": 1 }, { - "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Id": 1431, + "Id": 1433, + "CommandName": "Set-PnPPageWebPart", "Rank": 2 }, { - "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Id": 1432, + "Id": 1434, + "CommandName": "Set-PnPPlannerBucket", "Rank": 1 }, { + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Id": 1435, "CommandName": "Set-PnPPlannerConfiguration", - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Id": 1433, "Rank": 1 }, { - "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Id": 1434, + "Id": 1436, + "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2 }, { - "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Id": 1435, + "Id": 1437, + "CommandName": "Set-PnPPlannerPlan", "Rank": 1 }, { - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Id": 1436, + "Id": 1438, + "CommandName": "Set-PnPPlannerTask", "Rank": 1 }, { - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Id": 1437, + "Id": 1439, + "CommandName": "Set-PnPPlannerTask", "Rank": 2 }, { - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Id": 1438, + "Id": 1440, + "CommandName": "Set-PnPPlannerTask", "Rank": 3 }, { - "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1439, + "Id": 1441, + "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1 }, { - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Id": 1440, + "Id": 1442, + "CommandName": "Set-PnPPropertyBagValue", "Rank": 1 }, { - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Id": 1441, + "Id": 1443, + "CommandName": "Set-PnPPropertyBagValue", "Rank": 2 }, { - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Id": 1442, + "Id": 1444, + "CommandName": "Set-PnPPropertyBagValue", "Rank": 3 }, { - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Id": 1443, + "Id": 1445, + "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1 }, { - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", - "Id": 1444, + "Id": 1446, + "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2 }, { - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Id": 1445, + "Id": 1447, + "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3 }, { - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Id": 1446, + "Id": 1448, + "CommandName": "Set-PnPRoleDefinition", "Rank": 1 }, { - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Id": 1447, + "Id": 1449, + "CommandName": "Set-PnPRoleDefinition", "Rank": 2 }, { - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Id": 1448, + "Id": 1450, + "CommandName": "Set-PnPRoleDefinition", "Rank": 3 }, { - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Id": 1449, + "Id": 1451, + "CommandName": "Set-PnPRoleDefinition", "Rank": 4 }, { - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Id": 1450, + "Id": 1452, + "CommandName": "Set-PnPSearchConfiguration", "Rank": 1 }, { - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1451, + "Id": 1453, + "CommandName": "Set-PnPSearchConfiguration", "Rank": 2 }, { - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1452, + "Id": 1454, + "CommandName": "Set-PnPSearchConfiguration", "Rank": 3 }, { - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1453, + "Id": 1455, + "CommandName": "Set-PnPSearchConfiguration", "Rank": 4 }, { - "CommandName": "Set-PnPSearchExternalItem", "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": 1454, + "Id": 1456, + "CommandName": "Set-PnPSearchExternalItem", "Rank": 1 }, { - "CommandName": "Set-PnPSearchExternalItem", "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": 1455, + "Id": 1457, + "CommandName": "Set-PnPSearchExternalItem", "Rank": 2 }, { - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Id": 1456, + "Id": 1458, + "CommandName": "Set-PnPSearchSettings", "Rank": 1 }, { - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Id": 1457, + "Id": 1459, + "CommandName": "Set-PnPSearchSettings", "Rank": 2 }, { - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Id": 1458, + "Id": 1460, + "CommandName": "Set-PnPSearchSettings", "Rank": 3 }, { - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Id": 1459, + "Id": 1461, + "CommandName": "Set-PnPSearchSettings", "Rank": 4 }, { - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Id": 1460, + "Id": 1462, + "CommandName": "Set-PnPSearchSettings", "Rank": 5 }, { - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Id": 1461, + "Id": 1463, + "CommandName": "Set-PnPSearchSettings", "Rank": 6 }, { - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Id": 1462, + "Id": 1464, + "CommandName": "Set-PnPSearchSettings", "Rank": 7 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", - "Id": 1463, + "Id": 1465, + "CommandName": "Set-PnPSite", "Rank": 1 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", - "Id": 1464, + "Id": 1466, + "CommandName": "Set-PnPSite", "Rank": 2 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", - "Id": 1465, + "Id": 1467, + "CommandName": "Set-PnPSite", "Rank": 3 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", - "Id": 1466, + "Id": 1468, + "CommandName": "Set-PnPSite", "Rank": 4 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Id": 1467, + "Id": 1469, + "CommandName": "Set-PnPSite", "Rank": 5 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", - "Id": 1468, + "Id": 1470, + "CommandName": "Set-PnPSite", "Rank": 6 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Id": 1469, + "Id": 1471, + "CommandName": "Set-PnPSite", "Rank": 7 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Id": 1470, + "Id": 1472, + "CommandName": "Set-PnPSite", "Rank": 8 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Id": 1471, + "Id": 1473, + "CommandName": "Set-PnPSite", "Rank": 9 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Id": 1472, + "Id": 1474, + "CommandName": "Set-PnPSite", "Rank": 10 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Id": 1473, + "Id": 1475, + "CommandName": "Set-PnPSite", "Rank": 11 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Id": 1474, + "Id": 1476, + "CommandName": "Set-PnPSite", "Rank": 12 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Id": 1475, + "Id": 1477, + "CommandName": "Set-PnPSite", "Rank": 13 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Id": 1476, + "Id": 1478, + "CommandName": "Set-PnPSite", "Rank": 14 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Id": 1477, + "Id": 1479, + "CommandName": "Set-PnPSite", "Rank": 15 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "Id": 1478, + "Id": 1480, + "CommandName": "Set-PnPSite", "Rank": 16 }, { - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Id": 1479, + "Id": 1481, + "CommandName": "Set-PnPSite", "Rank": 17 }, { - "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Id": 1480, + "Id": 1482, + "CommandName": "Set-PnPSiteClassification", "Rank": 1 }, { - "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", - "Id": 1481, + "Id": 1483, + "CommandName": "Set-PnPSiteClosure", "Rank": 1 }, { - "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", - "Id": 1482, + "Id": 1484, + "CommandName": "Set-PnPSiteClosure", "Rank": 2 }, { - "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Id": 1483, + "Id": 1485, + "CommandName": "Set-PnPSiteDesign", "Rank": 1 }, { - "CommandName": "Set-PnPSiteDesign", "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": 1484, + "Id": 1486, + "CommandName": "Set-PnPSiteDesign", "Rank": 2 }, { - "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Id": 1485, + "Id": 1487, + "CommandName": "Set-PnPSiteGroup", "Rank": 1 }, { - "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Id": 1486, + "Id": 1488, + "CommandName": "Set-PnPSiteGroup", "Rank": 2 }, { - "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 1487, + "Id": 1489, + "CommandName": "Set-PnPSitePolicy", "Rank": 1 }, { - "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1488, + "Id": 1490, + "CommandName": "Set-PnPSiteScript", "Rank": 1 }, { - "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1489, + "Id": 1491, + "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1 }, { - "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Id": 1490, + "Id": 1492, + "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1 }, { - "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Id": 1491, + "Id": 1493, + "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1492, + "Id": 1494, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1493, + "Id": 1495, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1494, + "Id": 1496, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1495, + "Id": 1497, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1496, + "Id": 1498, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5 }, { + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1499, "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1497, "Rank": 6 }, { - "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1498, + "Id": 1500, + "CommandName": "Set-PnPStorageEntity", "Rank": 1 }, { - "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1499, + "Id": 1501, + "CommandName": "Set-PnPStorageEntity", "Rank": 2 }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1500, + "Id": 1502, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1 }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1501, + "Id": 1503, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2 }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1502, + "Id": 1504, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1 }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1503, + "Id": 1505, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2 }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Id": 1504, + "Id": 1506, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1 }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Id": 1505, + "Id": 1507, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 2 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Id": 1506, + "Id": 1508, + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Id": 1507, + "Id": 1509, + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Id": 1508, + "Id": 1510, + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3 }, { - "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", - "Id": 1509, + "Id": 1511, + "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1 }, { - "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Id": 1510, + "Id": 1512, + "CommandName": "Set-PnPTeamsChannel", "Rank": 1 }, { - "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Id": 1511, + "Id": 1513, + "CommandName": "Set-PnPTeamsChannel", "Rank": 2 }, { - "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Id": 1512, + "Id": 1514, + "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1 }, { - "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Id": 1513, + "Id": 1515, + "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2 }, { - "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Id": 1514, + "Id": 1516, + "CommandName": "Set-PnPTeamsTab", "Rank": 1 }, { - "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Id": 1515, + "Id": 1517, + "CommandName": "Set-PnPTeamsTag", "Rank": 1 }, { - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Id": 1516, + "Id": 1518, + "CommandName": "Set-PnPTeamsTeam", "Rank": 1 }, { - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Id": 1517, + "Id": 1519, + "CommandName": "Set-PnPTeamsTeam", "Rank": 2 }, { - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Id": 1518, + "Id": 1520, + "CommandName": "Set-PnPTeamsTeam", "Rank": 3 }, { - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Id": 1519, + "Id": 1521, + "CommandName": "Set-PnPTeamsTeam", "Rank": 4 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Id": 1520, + "Id": 1522, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Id": 1521, + "Id": 1523, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Id": 1522, + "Id": 1524, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3 }, { - "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Id": 1523, + "Id": 1525, + "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1 }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Id": 1524, + "Id": 1526, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1 }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Id": 1525, + "Id": 1527, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2 }, { - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "Id": 1526, + "Id": 1528, + "CommandName": "Set-PnPTenant", "Rank": 1 }, { - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Id": 1527, + "Id": 1529, + "CommandName": "Set-PnPTenant", "Rank": 2 }, { - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Id": 1528, + "Id": 1530, + "CommandName": "Set-PnPTenant", "Rank": 3 }, { - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Id": 1529, + "Id": 1531, + "CommandName": "Set-PnPTenant", "Rank": 4 }, { - "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Id": 1530, + "Id": 1532, + "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1 }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Id": 1531, + "Id": 1533, + "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1 }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Id": 1532, + "Id": 1534, + "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2 }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Id": 1533, + "Id": 1535, + "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3 }, { - "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "Id": 1534, + "Id": 1536, + "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 1 }, { - "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Id": 1535, + "Id": 1537, + "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2 }, { - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Id": 1536, + "Id": 1538, + "CommandName": "Set-PnPTenantSite", "Rank": 1 }, { - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Id": 1537, + "Id": 1539, + "CommandName": "Set-PnPTenantSite", "Rank": 2 }, { - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1538, + "Id": 1540, + "CommandName": "Set-PnPTenantSite", "Rank": 3 }, { - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1539, + "Id": 1541, + "CommandName": "Set-PnPTenantSite", "Rank": 4 }, { - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Id": 1540, + "Id": 1542, + "CommandName": "Set-PnPTenantSite", "Rank": 5 }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Id": 1541, + "Id": 1543, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1 }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Id": 1542, + "Id": 1544, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2 }, { - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Id": 1543, + "Id": 1545, + "CommandName": "Set-PnPTerm", "Rank": 1 }, { - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1544, + "Id": 1546, + "CommandName": "Set-PnPTerm", "Rank": 2 }, { - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1545, + "Id": 1547, + "CommandName": "Set-PnPTerm", "Rank": 3 }, { - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "Id": 1546, + "Id": 1548, + "CommandName": "Set-PnPTerm", "Rank": 4 }, { - "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Id": 1547, + "Id": 1549, + "CommandName": "Set-PnPTermGroup", "Rank": 1 }, { - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Id": 1548, + "Id": 1550, + "CommandName": "Set-PnPTermSet", "Rank": 1 }, { - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Id": 1549, + "Id": 1551, + "CommandName": "Set-PnPTermSet", "Rank": 2 }, { - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Id": 1550, + "Id": 1552, + "CommandName": "Set-PnPTermSet", "Rank": 3 }, { - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", - "Id": 1551, + "Id": 1553, + "CommandName": "Set-PnPTheme", "Rank": 1 }, { - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Id": 1552, + "Id": 1554, + "CommandName": "Set-PnPTheme", "Rank": 2 }, { - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Id": 1553, + "Id": 1555, + "CommandName": "Set-PnPTheme", "Rank": 3 }, { - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Id": 1554, + "Id": 1556, + "CommandName": "Set-PnPTheme", "Rank": 4 }, { - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Id": 1555, + "Id": 1557, + "CommandName": "Set-PnPTraceLog", "Rank": 1 }, { - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Id": 1556, + "Id": 1558, + "CommandName": "Set-PnPTraceLog", "Rank": 2 }, { - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Id": 1557, + "Id": 1559, + "CommandName": "Set-PnPTraceLog", "Rank": 3 }, { - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", - "Id": 1558, + "Id": 1560, + "CommandName": "Set-PnPTraceLog", "Rank": 4 }, { - "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Id": 1559, + "Id": 1561, + "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1 }, { - "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Id": 1560, + "Id": 1562, + "CommandName": "Set-PnPUserProfileProperty", "Rank": 1 }, { + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Id": 1563, "CommandName": "Set-PnPUserProfileProperty", - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Id": 1561, "Rank": 2 }, { - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Id": 1562, + "Id": 1564, + "CommandName": "Set-PnPView", "Rank": 1 }, { - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Id": 1563, + "Id": 1565, + "CommandName": "Set-PnPView", "Rank": 2 }, { - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", - "Id": 1564, + "Id": 1566, + "CommandName": "Set-PnPView", "Rank": 3 }, { - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Id": 1565, + "Id": 1567, + "CommandName": "Set-PnPView", "Rank": 4 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "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": 1566, + "Id": 1568, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 1 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Id": 1567, + "Id": 1569, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "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": 1568, + "Id": 1570, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 3 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Id": 1569, + "Id": 1571, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4 }, { - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Id": 1570, + "Id": 1572, + "CommandName": "Set-PnPWeb", "Rank": 1 }, { - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Id": 1571, + "Id": 1573, + "CommandName": "Set-PnPWeb", "Rank": 2 }, { - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Id": 1572, + "Id": 1574, + "CommandName": "Set-PnPWeb", "Rank": 3 }, { - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", - "Id": 1573, + "Id": 1575, + "CommandName": "Set-PnPWeb", "Rank": 4 }, { - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Id": 1574, + "Id": 1576, + "CommandName": "Set-PnPWebHeader", "Rank": 1 }, { - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Id": 1575, + "Id": 1577, + "CommandName": "Set-PnPWebHeader", "Rank": 2 }, { - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Id": 1576, + "Id": 1578, + "CommandName": "Set-PnPWebHeader", "Rank": 3 }, { - "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 1577, + "Id": 1579, + "CommandName": "Set-PnPWebhookSubscription", "Rank": 1 }, { - "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Id": 1578, + "Id": 1580, + "CommandName": "Set-PnPWebhookSubscription", "Rank": 2 }, { - "CommandName": "Set-PnPWebPartProperty", "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "Id": 1579, + "Id": 1581, + "CommandName": "Set-PnPWebPartProperty", "Rank": 1 }, { - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1580, + "Id": 1582, + "CommandName": "Set-PnPWebPermission", "Rank": 1 }, { - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Id": 1581, + "Id": 1583, + "CommandName": "Set-PnPWebPermission", "Rank": 2 }, { - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1582, + "Id": 1584, + "CommandName": "Set-PnPWebPermission", "Rank": 3 }, { - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Id": 1583, + "Id": 1585, + "CommandName": "Set-PnPWebPermission", "Rank": 4 }, { - "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", - "Id": 1584, + "Id": 1586, + "CommandName": "Set-PnPWebTheme", "Rank": 1 }, { - "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Id": 1585, + "Id": 1587, + "CommandName": "Set-PnPWebTheme", "Rank": 2 }, { - "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Id": 1586, + "Id": 1588, + "CommandName": "Set-PnPWikiPageContent", "Rank": 1 }, { - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Id": 1587, + "Id": 1589, + "CommandName": "Submit-PnPSearchQuery", "Rank": 1 }, { - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Id": 1588, + "Id": 1590, + "CommandName": "Submit-PnPSearchQuery", "Rank": 2 }, { - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Id": 1589, + "Id": 1591, + "CommandName": "Submit-PnPSearchQuery", "Rank": 3 }, { - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Id": 1590, + "Id": 1592, + "CommandName": "Submit-PnPSearchQuery", "Rank": 4 }, { - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Id": 1591, + "Id": 1593, + "CommandName": "Submit-PnPSearchQuery", "Rank": 5 }, { - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", - "Id": 1592, + "Id": 1594, + "CommandName": "Submit-PnPSearchQuery", "Rank": 6 }, { - "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Id": 1593, + "Id": 1595, + "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1 }, { - "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html", - "Id": 1594, + "Id": 1596, + "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2 }, { - "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1595, + "Id": 1597, + "CommandName": "Sync-PnPAppToTeams", "Rank": 1 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Id": 1596, + "Id": 1598, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Id": 1597, + "Id": 1599, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Id": 1598, + "Id": 1600, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3 }, { - "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Id": 1599, + "Id": 1601, + "CommandName": "Test-PnPListItemIsRecord", "Rank": 1 }, { - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Id": 1600, + "Id": 1602, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1 }, { - "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1601, + "Id": 1603, + "CommandName": "Test-PnPSite", "Rank": 1 }, { - "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1602, + "Id": 1604, + "CommandName": "Test-PnPSite", "Rank": 2 }, { - "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Id": 1603, + "Id": 1605, + "CommandName": "Test-PnPTenantTemplate", "Rank": 1 }, { - "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Id": 1604, + "Id": 1606, + "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1 }, { - "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1605, + "Id": 1607, + "CommandName": "Uninstall-PnPApp", "Rank": 1 }, { - "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1606, + "Id": 1608, + "CommandName": "Uninstall-PnPApp", "Rank": 2 }, { - "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1607, + "Id": 1609, + "CommandName": "Unpublish-PnPApp", "Rank": 1 }, { - "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1608, + "Id": 1610, + "CommandName": "Unpublish-PnPApp", "Rank": 2 }, { - "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Id": 1609, + "Id": 1611, + "CommandName": "Unpublish-PnPContentType", "Rank": 1 }, { - "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 1610, + "Id": 1612, + "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1 }, { - "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", - "Id": 1611, + "Id": 1613, + "CommandName": "Unpublish-PnPSyntexModel", "Rank": 2 }, { - "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1612, + "Id": 1614, + "CommandName": "Unregister-PnPHubSite", "Rank": 1 }, { - "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1613, + "Id": 1615, + "CommandName": "Update-PnPApp", "Rank": 1 }, { - "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1614, + "Id": 1616, + "CommandName": "Update-PnPApp", "Rank": 2 }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1615, + "Id": 1617, + "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1 }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Id": 1616, + "Id": 1618, + "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2 }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 1617, + "Id": 1619, + "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Id": 1618, + "Id": 1620, + "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 1619, + "Id": 1621, + "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Id": 1620, + "Id": 1622, + "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3 }, { - "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Id": 1621, + "Id": 1623, + "CommandName": "Update-PnPTeamsApp", "Rank": 1 }, { - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1622, + "Id": 1624, + "CommandName": "Update-PnPTeamsUser", "Rank": 1 }, { - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 1623, + "Id": 1625, + "CommandName": "Update-PnPTeamsUser", "Rank": 2 }, { - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Id": 1624, + "Id": 1626, + "CommandName": "Update-PnPTeamsUser", "Rank": 3 }, { - "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Id": 1625, + "Id": 1627, + "CommandName": "Update-PnPUserType", "Rank": 1 } ] diff --git a/version.txt b/version.txt index 53e137588..982a4bb44 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.34 \ No newline at end of file +2.3.35 \ No newline at end of file From 211d256dcd0814f13d430a8496805b524a99095f Mon Sep 17 00:00:00 2001 From: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Date: Thu, 25 Jan 2024 02:47:09 +0000 Subject: [PATCH 50/53] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6508 ++++++++--------- version.txt | 2 +- 3 files changed, 3256 insertions(+), 3256 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index ac281cbd1..367dc9f71 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -1f4fe8cfb168fe50473a4a331710b917e3b5ca40 \ No newline at end of file +247245e14f0fb07418c5c94e31169fdb5fd4bbb3 \ 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 83c924d0e..58e64c931 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9764 +1,9764 @@ [ { - "Command": "Add-PnPAlert -List \"Demo List\"", - "Id": 1, "CommandName": "Add-PnPAlert", + "Id": 1, + "Command": "Add-PnPAlert -List \"Demo List\"", "Rank": 1 }, { - "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", + "Id": 2, + "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", "Rank": 2 }, { - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 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\"", "Rank": 3 }, { - "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", + "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))", "Rank": 4 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Id": 5, "CommandName": "Add-PnPApp", + "Id": 5, + "Command": "Add-PnPApp -Path ./myapp.sppkg", "Rank": 1 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Id": 6, "CommandName": "Add-PnPApp", + "Id": 6, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Rank": 2 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Id": 7, "CommandName": "Add-PnPApp", + "Id": 7, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Rank": 3 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Id": 8, "CommandName": "Add-PnPApp", + "Id": 8, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Rank": 4 }, { - "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", + "Id": 9, + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", "Rank": 1 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Id": 10, "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 10, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Rank": 1 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Id": 11, "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 11, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Rank": 2 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 12, "CommandName": "Add-PnPAzureADGroupMember", + "Id": 12, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 13, "CommandName": "Add-PnPAzureADGroupMember", + "Id": 13, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Id": 14, "CommandName": "Add-PnPAzureADGroupMember", + "Id": 14, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3 }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 15, "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 15, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 16, "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 16, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2 }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Id": 17, "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 17, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3 }, { - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "Id": 18, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Id": 18, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Rank": 1 }, { - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "Id": 19, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Id": 19, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Rank": 2 }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "Id": 20, "CommandName": "Add-PnPContentType", + "Id": 20, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Rank": 1 }, { - "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", + "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\"", "Rank": 2 }, { - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Id": 22, "CommandName": "Add-PnPContentType", + "Id": 22, + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Rank": 3 }, { - "Command": "Add-PnPContentType -Name \"Project Item\"", - "Id": 23, "CommandName": "Add-PnPContentType", + "Id": 23, + "Command": "Add-PnPContentType -Name \"Project Item\"", "Rank": 4 }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "Id": 24, "CommandName": "Add-PnPContentType", + "Id": 24, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Rank": 5 }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Id": 25, "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 25, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Rank": 1 }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Id": 26, "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 26, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Rank": 2 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 27, "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 27, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 28, "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 28, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2 }, { - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Id": 29, "CommandName": "Add-PnPContentTypeToList", + "Id": 29, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Rank": 1 }, { - "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", + "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`\"}\"", "Rank": 1 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Id": 31, "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 31, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Rank": 1 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity", - "Id": 32, "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 32, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity", "Rank": 2 }, { - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Id": 33, "CommandName": "Add-PnPDocumentSet", + "Id": 33, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Rank": 1 }, { - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "Id": 34, "CommandName": "Add-PnPEventReceiver", + "Id": 34, + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "Rank": 1 }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "Id": 35, "CommandName": "Add-PnPEventReceiver", + "Id": 35, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Rank": 2 }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "Id": 36, "CommandName": "Add-PnPEventReceiver", + "Id": 36, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "Rank": 3 }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "Id": 37, "CommandName": "Add-PnPEventReceiver", + "Id": 37, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Rank": 4 }, { - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Id": 38, "CommandName": "Add-PnPField", + "Id": 38, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Rank": 1 }, { - "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", + "Id": 39, + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", "Rank": 2 }, { - "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", + "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\"", "Rank": 3 }, { - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Id": 41, "CommandName": "Add-PnPField", + "Id": 41, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Rank": 4 }, { - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "Id": 42, "CommandName": "Add-PnPField", + "Id": 42, + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Rank": 5 }, { - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "Id": 43, "CommandName": "Add-PnPField", + "Id": 43, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Rank": 6 }, { - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 44, "CommandName": "Add-PnPFieldToContentType", + "Id": 44, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1 }, { - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Id": 45, "CommandName": "Add-PnPFile", + "Id": 45, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Rank": 1 }, { - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Id": 46, "CommandName": "Add-PnPFile", + "Id": 46, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Rank": 2 }, { - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", - "Id": 47, "CommandName": "Add-PnPFile", + "Id": 47, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", "Rank": 3 }, { - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", - "Id": 48, "CommandName": "Add-PnPFile", + "Id": 48, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", "Rank": 4 }, { - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", - "Id": 49, "CommandName": "Add-PnPFile", + "Id": 49, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", "Rank": 5 }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", - "Id": 50, "CommandName": "Add-PnPFile", + "Id": 50, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", "Rank": 6 }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Id": 51, "CommandName": "Add-PnPFile", + "Id": 51, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Rank": 7 }, { - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Id": 52, "CommandName": "Add-PnPFile", + "Id": 52, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Rank": 8 }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 53, "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 53, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1 }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "Id": 54, "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 54, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2 }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "Id": 55, "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 55, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3 }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 56, "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 56, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1 }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Id": 57, "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 57, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Rank": 2 }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Id": 58, "CommandName": "Add-PnPFileSharingInvite", + "Id": 58, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1 }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Id": 59, "CommandName": "Add-PnPFileSharingInvite", + "Id": 59, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Rank": 2 }, { - "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", + "Id": 60, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Rank": 3 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Id": 61, "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 61, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Rank": 1 }, { - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "Id": 62, "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 62, + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Rank": 2 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "Id": 63, "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 63, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Rank": 3 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Id": 64, "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 64, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Rank": 4 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Id": 65, "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 65, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Rank": 5 }, { - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 66, "CommandName": "Add-PnPFileUserSharingLink", + "Id": 66, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "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", + "Id": 67, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 2 }, { - "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", + "Id": 68, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", "Rank": 1 }, { - "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", + "Id": 69, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView", "Rank": 2 }, { - "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", + "Id": 70, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare", "Rank": 3 }, { - "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", + "Id": 71, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", "Rank": 4 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 72, "CommandName": "Add-PnPFolder", + "Id": 72, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Id": 73, "CommandName": "Add-PnPFolder", + "Id": 73, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Rank": 2 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Id": 74, "CommandName": "Add-PnPFolder", + "Id": 74, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Rank": 3 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 75, "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 75, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Id": 76, "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 76, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "Id": 77, "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 77, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3 }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 78, "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 78, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1 }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Id": 79, "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 79, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Rank": 2 }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Id": 80, "CommandName": "Add-PnPFolderSharingInvite", + "Id": 80, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1 }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Id": 81, "CommandName": "Add-PnPFolderSharingInvite", + "Id": 81, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Rank": 2 }, { - "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", + "Id": 82, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Rank": 3 }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 83, "CommandName": "Add-PnPFolderUserSharingLink", + "Id": 83, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "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", + "Id": 84, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 2 }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 85, "CommandName": "Add-PnPGroupMember", + "Id": 85, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1 }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Id": 86, "CommandName": "Add-PnPGroupMember", + "Id": 86, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Rank": 2 }, { - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Id": 87, "CommandName": "Add-PnPHtmlPublishingPageLayout", + "Id": 87, + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1 }, { - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Id": 88, "CommandName": "Add-PnPHubSiteAssociation", + "Id": 88, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Rank": 1 }, { - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Id": 89, "CommandName": "Add-PnPHubToHubAssociation", + "Id": 89, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Rank": 1 }, { - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "Id": 90, "CommandName": "Add-PnPHubToHubAssociation", + "Id": 90, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Rank": 2 }, { - "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", + "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\"", "Rank": 3 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site", - "Id": 92, "CommandName": "Add-PnPJavaScriptBlock", + "Id": 92, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site", "Rank": 1 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'", - "Id": 93, "CommandName": "Add-PnPJavaScriptBlock", + "Id": 93, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'", "Rank": 2 }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Id": 94, "CommandName": "Add-PnPJavaScriptLink", + "Id": 94, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Rank": 1 }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Id": 95, "CommandName": "Add-PnPJavaScriptLink", + "Id": 95, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Rank": 2 }, { - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Id": 96, "CommandName": "Add-PnPListDesign", + "Id": 96, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Rank": 1 }, { - "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", + "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\"", "Rank": 2 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Id": 98, "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 98, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Rank": 1 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Id": 99, "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 99, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Rank": 2 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Id": 100, "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 100, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Rank": 3 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 101, "CommandName": "Add-PnPListItem", + "Id": 101, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 102, "CommandName": "Add-PnPListItem", + "Id": 102, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Id": 103, "CommandName": "Add-PnPListItem", + "Id": 103, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Rank": 3 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Id": 104, "CommandName": "Add-PnPListItem", + "Id": 104, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Rank": 4 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Id": 105, "CommandName": "Add-PnPListItem", + "Id": 105, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Rank": 5 }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Id": 106, "CommandName": "Add-PnPListItemAttachment", + "Id": 106, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Rank": 1 }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Id": 107, "CommandName": "Add-PnPListItemAttachment", + "Id": 107, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Rank": 2 }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Id": 108, "CommandName": "Add-PnPListItemAttachment", + "Id": 108, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Rank": 3 }, { - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Id": 109, "CommandName": "Add-PnPListItemComment", + "Id": 109, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Rank": 1 }, { - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Id": 110, "CommandName": "Add-PnPMasterPage", + "Id": 110, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Rank": 1 }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 111, "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 111, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 112, "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 112, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2 }, { - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 113, "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 113, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 114, "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 114, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "Id": 115, "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 115, + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Rank": 1 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Id": 116, "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 116, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Rank": 2 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Id": 117, "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 117, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Rank": 3 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Id": 118, "CommandName": "Add-PnPNavigationNode", + "Id": 118, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Rank": 1 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "Id": 119, "CommandName": "Add-PnPNavigationNode", + "Id": 119, + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "Rank": 2 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Id": 120, "CommandName": "Add-PnPNavigationNode", + "Id": 120, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Rank": 3 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Id": 121, "CommandName": "Add-PnPNavigationNode", + "Id": 121, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Rank": 4 }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Id": 122, "CommandName": "Add-PnPNavigationNode", + "Id": 122, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Rank": 5 }, { - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Id": 123, "CommandName": "Add-PnPNavigationNode", + "Id": 123, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Rank": 6 }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Id": 124, "CommandName": "Add-PnPNavigationNode", + "Id": 124, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Rank": 7 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Id": 125, "CommandName": "Add-PnPNavigationNode", + "Id": 125, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Rank": 8 }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Id": 126, "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 126, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Rank": 1 }, { - "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", + "Id": 127, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", "Rank": 2 }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Id": 128, "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 128, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Rank": 3 }, { - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Id": 129, "CommandName": "Add-PnPOrgNewsSite", + "Id": 129, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Rank": 1 }, { - "Command": "Add-PnPPage -Name \"NewPage\"", - "Id": 130, "CommandName": "Add-PnPPage", + "Id": 130, + "Command": "Add-PnPPage -Name \"NewPage\"", "Rank": 1 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Id": 131, "CommandName": "Add-PnPPage", + "Id": 131, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Rank": 2 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Id": 132, "CommandName": "Add-PnPPage", + "Id": 132, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Rank": 3 }, { - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Id": 133, "CommandName": "Add-PnPPage", + "Id": 133, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Rank": 4 }, { - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Id": 134, "CommandName": "Add-PnPPage", + "Id": 134, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Rank": 5 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Id": 135, "CommandName": "Add-PnPPage", + "Id": 135, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Rank": 6 }, { - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 136, "CommandName": "Add-PnPPage", + "Id": 136, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Id": 137, "CommandName": "Add-PnPPage", + "Id": 137, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Rank": 8 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 138, "CommandName": "Add-PnPPage", + "Id": 138, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 139, "CommandName": "Add-PnPPage", + "Id": 139, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10 }, { - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Id": 140, "CommandName": "Add-PnPPageImageWebPart", + "Id": 140, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Rank": 1 }, { - "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", + "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\"", "Rank": 2 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Id": 142, "CommandName": "Add-PnPPageSection", + "Id": 142, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Rank": 1 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Id": 143, "CommandName": "Add-PnPPageSection", + "Id": 143, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Rank": 2 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Id": 144, "CommandName": "Add-PnPPageTextPart", + "Id": 144, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Rank": 1 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Id": 145, "CommandName": "Add-PnPPageTextPart", + "Id": 145, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Rank": 2 }, { - "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", + "Id": 146, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "Rank": 3 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Id": 147, "CommandName": "Add-PnPPageWebPart", + "Id": 147, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Rank": 1 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Id": 148, "CommandName": "Add-PnPPageWebPart", + "Id": 148, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Rank": 2 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Id": 149, "CommandName": "Add-PnPPageWebPart", + "Id": 149, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Rank": 3 }, { - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Id": 150, "CommandName": "Add-PnPPlannerBucket", + "Id": 150, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Rank": 1 }, { - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Id": 151, "CommandName": "Add-PnPPlannerBucket", + "Id": 151, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Rank": 2 }, { - "Command": "Add-PnPPlannerRoster", - "Id": 152, "CommandName": "Add-PnPPlannerRoster", + "Id": 152, + "Command": "Add-PnPPlannerRoster", "Rank": 1 }, { - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 153, "CommandName": "Add-PnPPlannerRosterMember", + "Id": 153, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Id": 154, "CommandName": "Add-PnPPlannerTask", + "Id": 154, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 1 }, { - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Id": 155, "CommandName": "Add-PnPPlannerTask", + "Id": 155, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 2 }, { - "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", + "Id": 156, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3 }, { - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 157, "CommandName": "Add-PnPPublishingImageRendition", + "Id": 157, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1 }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Id": 158, "CommandName": "Add-PnPPublishingPage", + "Id": 158, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Rank": 1 }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Id": 159, "CommandName": "Add-PnPPublishingPage", + "Id": 159, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Rank": 2 }, { - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Id": 160, "CommandName": "Add-PnPPublishingPageLayout", + "Id": 160, + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Id": 161, "CommandName": "Add-PnPRoleDefinition", + "Id": 161, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Rank": 1 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Id": 162, "CommandName": "Add-PnPRoleDefinition", + "Id": 162, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Rank": 2 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Id": 163, "CommandName": "Add-PnPRoleDefinition", + "Id": 163, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Rank": 3 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 164, "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 164, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 165, "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 165, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2 }, { - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Id": 166, "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 166, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Rank": 3 }, { - "Command": "Add-PnPSiteCollectionAppCatalog", - "Id": 167, "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 167, + "Command": "Add-PnPSiteCollectionAppCatalog", "Rank": 1 }, { - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 168, "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 168, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 2 }, { - "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", + "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", "Rank": 1 }, { - "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", + "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", "Rank": 2 }, { - "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", + "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\"", "Rank": 3 }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Id": 172, "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 172, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Rank": 1 }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 173, "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 173, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2 }, { - "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", + "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", "Rank": 3 }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 175, "CommandName": "Add-PnPSiteDesignTask", + "Id": 175, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1 }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 176, "CommandName": "Add-PnPSiteDesignTask", + "Id": 176, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 2 }, { - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Id": 177, "CommandName": "Add-PnPSiteScript", + "Id": 177, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Rank": 1 }, { - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Id": 178, "CommandName": "Add-PnPSiteScriptPackage", + "Id": 178, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Rank": 1 }, { - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Id": 179, "CommandName": "Add-PnPSiteTemplate", + "Id": 179, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Rank": 1 }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Id": 180, "CommandName": "Add-PnPStoredCredential", + "Id": 180, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Rank": 1 }, { - "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", + "Id": 181, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2 }, { - "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", + "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\"", "Rank": 3 }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Id": 183, "CommandName": "Add-PnPTaxonomyField", + "Id": 183, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Rank": 1 }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Id": 184, "CommandName": "Add-PnPTaxonomyField", + "Id": 184, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Rank": 2 }, { - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Id": 185, "CommandName": "Add-PnPTeamsChannel", + "Id": 185, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Rank": 1 }, { - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Id": 186, "CommandName": "Add-PnPTeamsChannel", + "Id": 186, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Rank": 2 }, { - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Id": 187, "CommandName": "Add-PnPTeamsChannel", + "Id": 187, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Rank": 3 }, { - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Id": 188, "CommandName": "Add-PnPTeamsChannel", + "Id": 188, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Rank": 4 }, { - "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", + "Id": 189, + "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", "Rank": 1 }, { - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Id": 190, "CommandName": "Add-PnpTeamsChannelUser", + "Id": 190, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Rank": 2 }, { - "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", + "Id": 191, + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", "Rank": 1 }, { - "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", + "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\"", "Rank": 2 }, { - "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", + "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\"", "Rank": 3 }, { - "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", + "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", "Rank": 4 }, { - "Command": "Add-PnPTeamsTeam", - "Id": 195, "CommandName": "Add-PnPTeamsTeam", + "Id": 195, + "Command": "Add-PnPTeamsTeam", "Rank": 1 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 196, "CommandName": "Add-PnPTeamsUser", + "Id": 196, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 197, "CommandName": "Add-PnPTeamsUser", + "Id": 197, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Id": 198, "CommandName": "Add-PnPTeamsUser", + "Id": 198, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Rank": 3 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Id": 199, "CommandName": "Add-PnPTeamsUser", + "Id": 199, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Rank": 4 }, { - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 200, "CommandName": "Add-PnPTenantCdnOrigin", + "Id": 200, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1 }, { - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Id": 201, "CommandName": "Add-PnPTenantSequence", + "Id": 201, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Rank": 1 }, { - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Id": 202, "CommandName": "Add-PnPTenantSequenceSite", + "Id": 202, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Rank": 1 }, { - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Id": 203, "CommandName": "Add-PnPTenantSequenceSubSite", + "Id": 203, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Rank": 1 }, { - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Id": 204, "CommandName": "Add-PnPTermToTerm", + "Id": 204, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Rank": 1 }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Id": 205, "CommandName": "Add-PnPView", + "Id": 205, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Rank": 1 }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Id": 206, "CommandName": "Add-PnPView", + "Id": 206, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Rank": 2 }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", - "Id": 207, "CommandName": "Add-PnPView", + "Id": 207, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", "Rank": 3 }, { - "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", + "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\"", "Rank": 1 }, { - "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", + "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\"", "Rank": 2 }, { - "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", + "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\"", "Rank": 3 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 211, "CommandName": "Add-PnPWebhookSubscription", + "Id": 211, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Id": 212, "CommandName": "Add-PnPWebhookSubscription", + "Id": 212, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Rank": 2 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "Id": 213, "CommandName": "Add-PnPWebhookSubscription", + "Id": 213, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "Rank": 3 }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "Id": 214, "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 214, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Rank": 1 }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Id": 215, "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 215, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Rank": 2 }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "Id": 216, "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 216, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Rank": 1 }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Id": 217, "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 217, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Rank": 2 }, { - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Id": 218, "CommandName": "Add-PnPWikiPage", + "Id": 218, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Rank": 1 }, { - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Id": 219, "CommandName": "Clear-PnPAzureADGroupMember", + "Id": 219, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Rank": 1 }, { - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Id": 220, "CommandName": "Clear-PnPAzureADGroupOwner", + "Id": 220, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Rank": 1 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Id": 221, "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 221, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Rank": 1 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Id": 222, "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 222, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Rank": 2 }, { - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 223, "CommandName": "Clear-PnPListItemAsRecord", + "Id": 223, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1 }, { - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Id": 224, "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Id": 224, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Rank": 1 }, { - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Id": 225, "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Id": 225, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Rank": 1 }, { - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 226, "CommandName": "Clear-PnpRecycleBinItem", + "Id": 226, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1 }, { - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Id": 227, "CommandName": "Clear-PnpRecycleBinItem", + "Id": 227, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Rank": 2 }, { - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Id": 228, "CommandName": "Clear-PnpRecycleBinItem", + "Id": 228, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Rank": 3 }, { - "Command": "Clear-PnPTenantAppCatalogUrl", - "Id": 229, "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Id": 229, + "Command": "Clear-PnPTenantAppCatalogUrl", "Rank": 1 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 230, "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 230, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 231, "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 231, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2 }, { - "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", + "Id": 232, + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", "Rank": 1 }, { - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", - "Id": 233, "CommandName": "Convert-PnPFile", + "Id": 233, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", "Rank": 1 }, { - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", - "Id": 234, "CommandName": "Convert-PnPFile", + "Id": 234, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", "Rank": 2 }, { - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", - "Id": 235, "CommandName": "Convert-PnPFile", + "Id": 235, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", "Rank": 3 }, { - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", - "Id": 236, "CommandName": "Convert-PnPFile", + "Id": 236, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", "Rank": 4 }, { - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", - "Id": 237, "CommandName": "Convert-PnPFile", + "Id": 237, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", "Rank": 5 }, { - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", - "Id": 238, "CommandName": "Convert-PnPFile", + "Id": 238, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", "Rank": 6 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Id": 239, "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 239, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Rank": 1 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Id": 240, "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 240, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Rank": 2 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Id": 241, "CommandName": "Convert-PnPSiteTemplate", + "Id": 241, + "Command": "Convert-PnPSiteTemplate -Path template.xml", "Rank": 1 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Id": 242, "CommandName": "Convert-PnPSiteTemplate", + "Id": 242, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Rank": 2 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Id": 243, "CommandName": "Convert-PnPSiteTemplate", + "Id": 243, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Rank": 3 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Id": 244, "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 244, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Rank": 1 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Id": 245, "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 245, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Rank": 2 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Id": 246, "CommandName": "ConvertTo-PnPPage", + "Id": 246, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Rank": 1 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Id": 247, "CommandName": "ConvertTo-PnPPage", + "Id": 247, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Rank": 2 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Id": 248, "CommandName": "ConvertTo-PnPPage", + "Id": 248, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Rank": 3 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Id": 249, "CommandName": "ConvertTo-PnPPage", + "Id": 249, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Rank": 4 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 250, "CommandName": "ConvertTo-PnPPage", + "Id": 250, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 5 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Id": 251, "CommandName": "ConvertTo-PnPPage", + "Id": 251, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Rank": 6 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Id": 252, "CommandName": "ConvertTo-PnPPage", + "Id": 252, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Rank": 7 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite", - "Id": 253, "CommandName": "ConvertTo-PnPPage", + "Id": 253, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite", "Rank": 8 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 254, "CommandName": "ConvertTo-PnPPage", + "Id": 254, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 9 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Id": 255, "CommandName": "ConvertTo-PnPPage", + "Id": 255, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Rank": 10 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Id": 256, "CommandName": "ConvertTo-PnPPage", + "Id": 256, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Rank": 11 }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 257, "CommandName": "ConvertTo-PnPPage", + "Id": 257, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 12 }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 258, "CommandName": "ConvertTo-PnPPage", + "Id": 258, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 13 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Id": 259, "CommandName": "ConvertTo-PnPPage", + "Id": 259, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Rank": 14 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 260, "CommandName": "Copy-PnPFile", + "Id": 260, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1 }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Id": 261, "CommandName": "Copy-PnPFile", + "Id": 261, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Id": 262, "CommandName": "Copy-PnPFile", + "Id": 262, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3 }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 263, "CommandName": "Copy-PnPFile", + "Id": 263, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4 }, { - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Id": 264, "CommandName": "Copy-PnPFile", + "Id": 264, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Id": 265, "CommandName": "Copy-PnPFile", + "Id": 265, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Id": 266, "CommandName": "Copy-PnPFile", + "Id": 266, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 267, "CommandName": "Copy-PnPFile", + "Id": 267, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Id": 268, "CommandName": "Copy-PnPFile", + "Id": 268, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9 }, { - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Id": 269, "CommandName": "Copy-PnPFile", + "Id": 269, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 270, "CommandName": "Copy-PnPFolder", + "Id": 270, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1 }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Id": 271, "CommandName": "Copy-PnPFolder", + "Id": 271, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Id": 272, "CommandName": "Copy-PnPFolder", + "Id": 272, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3 }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 273, "CommandName": "Copy-PnPFolder", + "Id": 273, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Id": 274, "CommandName": "Copy-PnPFolder", + "Id": 274, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Id": 275, "CommandName": "Copy-PnPFolder", + "Id": 275, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Id": 276, "CommandName": "Copy-PnPFolder", + "Id": 276, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 277, "CommandName": "Copy-PnPFolder", + "Id": 277, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Id": 278, "CommandName": "Copy-PnPFolder", + "Id": 278, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9 }, { - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Id": 279, "CommandName": "Copy-PnPFolder", + "Id": 279, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10 }, { - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Id": 280, "CommandName": "Copy-PnPItemProxy", + "Id": 280, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Rank": 1 }, { - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Id": 281, "CommandName": "Copy-PnPList", + "Id": 281, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Rank": 1 }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Id": 282, "CommandName": "Copy-PnPList", + "Id": 282, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Rank": 2 }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Id": 283, "CommandName": "Copy-PnPList", + "Id": 283, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Rank": 3 }, { - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "Id": 284, "CommandName": "Copy-PnPList", + "Id": 284, + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Rank": 4 }, { - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Id": 285, "CommandName": "Copy-PnPTeamsTeam", + "Id": 285, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Rank": 1 }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Id": 286, "CommandName": "Copy-PnPTeamsTeam", + "Id": 286, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Rank": 2 }, { - "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": 287, "CommandName": "Copy-PnPTeamsTeam", + "Id": 287, + "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", "Rank": 3 }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "Id": 288, "CommandName": "Copy-PnPTeamsTeam", + "Id": 288, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Rank": 4 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 289, "CommandName": "Disable-PnPFeature", + "Id": 289, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Id": 290, "CommandName": "Disable-PnPFeature", + "Id": 290, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Id": 291, "CommandName": "Disable-PnPFeature", + "Id": 291, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3 }, { - "Command": "Disable-PnPPageScheduling", - "Id": 292, "CommandName": "Disable-PnPPageScheduling", + "Id": 292, + "Command": "Disable-PnPPageScheduling", "Rank": 1 }, { - "Command": "Disable-PnPPowerShellTelemetry", - "Id": 293, "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 293, + "Command": "Disable-PnPPowerShellTelemetry", "Rank": 1 }, { - "Command": "Disable-PnPPowerShellTelemetry -Force", - "Id": 294, "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 294, + "Command": "Disable-PnPPowerShellTelemetry -Force", "Rank": 2 }, { - "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 295, "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 295, + "Command": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1 }, { - "Command": "Disable-PnPSiteClassification", - "Id": 296, "CommandName": "Disable-PnPSiteClassification", + "Id": 296, + "Command": "Disable-PnPSiteClassification", "Rank": 1 }, { - "Command": "Disconnect-PnPOnline", - "Id": 297, "CommandName": "Disconnect-PnPOnline", + "Id": 297, + "Command": "Disconnect-PnPOnline", "Rank": 1 }, { - "Command": "Enable-PnPCommSite", - "Id": 298, "CommandName": "Enable-PnPCommSite", + "Id": 298, + "Command": "Enable-PnPCommSite", "Rank": 1 }, { - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Id": 299, "CommandName": "Enable-PnPCommSite", + "Id": 299, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Rank": 2 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 300, "CommandName": "Enable-PnPFeature", + "Id": 300, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Id": 301, "CommandName": "Enable-PnPFeature", + "Id": 301, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Id": 302, "CommandName": "Enable-PnPFeature", + "Id": 302, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3 }, { - "Command": "Enable-PnPPageScheduling", - "Id": 303, "CommandName": "Enable-PnPPageScheduling", + "Id": 303, + "Command": "Enable-PnPPageScheduling", "Rank": 1 }, { - "Command": "Enable-PnPPowerShellTelemetry", - "Id": 304, "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 304, + "Command": "Enable-PnPPowerShellTelemetry", "Rank": 1 }, { - "Command": "Enable-PnPPowerShellTelemetry -Force", - "Id": 305, "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 305, + "Command": "Enable-PnPPowerShellTelemetry -Force", "Rank": 2 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Id": 306, "CommandName": "Enable-PnPSiteClassification", + "Id": 306, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Rank": 1 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 307, "CommandName": "Enable-PnPSiteClassification", + "Id": 307, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 2 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Id": 308, "CommandName": "Export-PnPListToSiteTemplate", + "Id": 308, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Rank": 1 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Id": 309, "CommandName": "Export-PnPListToSiteTemplate", + "Id": 309, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Rank": 2 }, { - "Command": "Export-PnPPage -Identity Home.aspx", - "Id": 310, "CommandName": "Export-PnPPage", + "Id": 310, + "Command": "Export-PnPPage -Identity Home.aspx", "Rank": 1 }, { - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Id": 311, "CommandName": "Export-PnPPageMapping", + "Id": 311, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Rank": 1 }, { - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Id": 312, "CommandName": "Export-PnPPageMapping", + "Id": 312, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Rank": 2 }, { - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Id": 313, "CommandName": "Export-PnPPageMapping", + "Id": 313, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Rank": 3 }, { - "Command": "Export-PnPTaxonomy", - "Id": 314, "CommandName": "Export-PnPTaxonomy", + "Id": 314, + "Command": "Export-PnPTaxonomy", "Rank": 1 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Id": 315, "CommandName": "Export-PnPTaxonomy", + "Id": 315, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Rank": 2 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Id": 316, "CommandName": "Export-PnPTaxonomy", + "Id": 316, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Rank": 3 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Id": 317, "CommandName": "Export-PnPTaxonomy", + "Id": 317, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Rank": 4 }, { - "Command": "Export-PnPTermGroupToXml", - "Id": 318, "CommandName": "Export-PnPTermGroupToXml", + "Id": 318, + "Command": "Export-PnPTermGroupToXml", "Rank": 1 }, { - "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Id": 319, "CommandName": "Export-PnPTermGroupToXml", + "Id": 319, + "Command": "Export-PnPTermGroupToXml -Out output.xml", "Rank": 2 }, { - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Id": 320, "CommandName": "Export-PnPTermGroupToXml", + "Id": 320, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Rank": 3 }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 321, "CommandName": "Export-PnPUserInfo", + "Id": 321, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1 }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "Id": 322, "CommandName": "Export-PnPUserInfo", + "Id": 322, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Id": 323, "CommandName": "Export-PnPUserProfile", + "Id": 323, + "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Rank": 1 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Id": 324, "CommandName": "Export-PnPUserProfile", + "Id": 324, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2 }, { - "Command": "Find-PnPFile -Match *.master", - "Id": 325, "CommandName": "Find-PnPFile", + "Id": 325, + "Command": "Find-PnPFile -Match *.master", "Rank": 1 }, { - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Id": 326, "CommandName": "Find-PnPFile", + "Id": 326, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Rank": 2 }, { - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Id": 327, "CommandName": "Find-PnPFile", + "Id": 327, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Rank": 3 }, { - "Command": "Get-PnPAccessToken", - "Id": 328, "CommandName": "Get-PnPAccessToken", + "Id": 328, + "Command": "Get-PnPAccessToken", "Rank": 1 }, { - "Command": "Get-PnPAccessToken -Decoded", - "Id": 329, "CommandName": "Get-PnPAccessToken", + "Id": 329, + "Command": "Get-PnPAccessToken -Decoded", "Rank": 2 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Id": 330, "CommandName": "Get-PnPAccessToken", + "Id": 330, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Rank": 3 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Id": 331, "CommandName": "Get-PnPAccessToken", + "Id": 331, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Rank": 4 }, { - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Id": 332, "CommandName": "Get-PnPAccessToken", + "Id": 332, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Rank": 5 }, { - "Command": "Get-PnPAlert", - "Id": 333, "CommandName": "Get-PnPAlert", + "Id": 333, + "Command": "Get-PnPAlert", "Rank": 1 }, { - "Command": "Get-PnPAlert -List \"Demo List\"", - "Id": 334, "CommandName": "Get-PnPAlert", + "Id": 334, + "Command": "Get-PnPAlert -List \"Demo List\"", "Rank": 2 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 335, "CommandName": "Get-PnPAlert", + "Id": 335, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3 }, { - "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Id": 336, "CommandName": "Get-PnPAlert", + "Id": 336, + "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Rank": 4 }, { - "Command": "Get-PnPAlert -AllUsers", - "Id": 337, "CommandName": "Get-PnPAlert", + "Id": 337, + "Command": "Get-PnPAlert -AllUsers", "Rank": 5 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Id": 338, "CommandName": "Get-PnPAlert", + "Id": 338, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Rank": 6 }, { - "Command": "Get-PnPApp", - "Id": 339, "CommandName": "Get-PnPApp", + "Id": 339, + "Command": "Get-PnPApp", "Rank": 1 }, { - "Command": "Get-PnPApp -Scope Site", - "Id": 340, "CommandName": "Get-PnPApp", + "Id": 340, + "Command": "Get-PnPApp -Scope Site", "Rank": 2 }, { - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 341, "CommandName": "Get-PnPApp", + "Id": 341, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 3 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Id": 342, "CommandName": "Get-PnPAppErrors", + "Id": 342, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Rank": 1 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Id": 343, "CommandName": "Get-PnPAppErrors", + "Id": 343, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Rank": 2 }, { - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Id": 344, "CommandName": "Get-PnPAppInfo", + "Id": 344, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Rank": 1 }, { - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 345, "CommandName": "Get-PnPAppInfo", + "Id": 345, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 2 }, { - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Id": 346, "CommandName": "Get-PnPAppInfo", + "Id": 346, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Rank": 3 }, { - "Command": "Get-PnPApplicationCustomizer", - "Id": 347, "CommandName": "Get-PnPApplicationCustomizer", + "Id": 347, + "Command": "Get-PnPApplicationCustomizer", "Rank": 1 }, { - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 348, "CommandName": "Get-PnPApplicationCustomizer", + "Id": 348, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2 }, { - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Id": 349, "CommandName": "Get-PnPApplicationCustomizer", + "Id": 349, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Rank": 3 }, { - "Command": "Get-PnPAuditing", - "Id": 350, "CommandName": "Get-PnPAuditing", + "Id": 350, + "Command": "Get-PnPAuditing", "Rank": 1 }, { - "Command": "Get-PnPAuthenticationRealm", - "Id": 351, "CommandName": "Get-PnPAuthenticationRealm", + "Id": 351, + "Command": "Get-PnPAuthenticationRealm", "Rank": 1 }, { - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Id": 352, "CommandName": "Get-PnPAuthenticationRealm", + "Id": 352, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Rank": 2 }, { - "Command": "Get-PnPAvailableLanguage", - "Id": 353, "CommandName": "Get-PnPAvailableLanguage", + "Id": 353, + "Command": "Get-PnPAvailableLanguage", "Rank": 1 }, { - "Command": "Get-PnPAvailableSensitivityLabel", - "Id": 354, "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 354, + "Command": "Get-PnPAvailableSensitivityLabel", "Rank": 1 }, { - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Id": 355, "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 355, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Rank": 2 }, { - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Id": 356, "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 356, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Rank": 3 }, { - "Command": "Get-PnPAvailableSiteClassification", - "Id": 357, "CommandName": "Get-PnPAvailableSiteClassification", + "Id": 357, + "Command": "Get-PnPAvailableSiteClassification", "Rank": 1 }, { - "Command": "Get-PnPAzureACSPrincipal", - "Id": 358, "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 358, + "Command": "Get-PnPAzureACSPrincipal", "Rank": 1 }, { - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Id": 359, "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 359, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Rank": 2 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Id": 360, "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 360, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Rank": 3 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Id": 361, "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 361, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Rank": 4 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 362, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 362, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Id": 363, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 363, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Rank": 2 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Id": 364, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 364, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Rank": 3 }, { - "Command": "Get-PnPAzureADActivityReportSignIn", - "Id": 365, "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 365, + "Command": "Get-PnPAzureADActivityReportSignIn", "Rank": 1 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Id": 366, "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 366, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Rank": 2 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Id": 367, "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 367, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Rank": 3 }, { - "Command": "Get-PnPAzureADApp", - "Id": 368, "CommandName": "Get-PnPAzureADApp", + "Id": 368, + "Command": "Get-PnPAzureADApp", "Rank": 1 }, { - "Command": "Get-PnPAzureADApp -Identity MyApp", - "Id": 369, "CommandName": "Get-PnPAzureADApp", + "Id": 369, + "Command": "Get-PnPAzureADApp -Identity MyApp", "Rank": 2 }, { - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 370, "CommandName": "Get-PnPAzureADApp", + "Id": 370, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3 }, { - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Id": 371, "CommandName": "Get-PnPAzureADApp", + "Id": 371, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Rank": 4 }, { - "Command": "Get-PnPAzureADAppPermission", - "Id": 372, "CommandName": "Get-PnPAzureADAppPermission", + "Id": 372, + "Command": "Get-PnPAzureADAppPermission", "Rank": 1 }, { - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Id": 373, "CommandName": "Get-PnPAzureADAppPermission", + "Id": 373, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Rank": 2 }, { - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 374, "CommandName": "Get-PnPAzureADAppPermission", + "Id": 374, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3 }, { - "Command": "Get-PnPAzureADAppSitePermission", - "Id": 375, "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 375, + "Command": "Get-PnPAzureADAppSitePermission", "Rank": 1 }, { - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Id": 376, "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 376, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2 }, { - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Id": 377, "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 377, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Rank": 3 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Id": 378, "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 378, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Rank": 4 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Id": 379, "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 379, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Rank": 5 }, { - "Command": "Get-PnPAzureADGroup", - "Id": 380, "CommandName": "Get-PnPAzureADGroup", + "Id": 380, + "Command": "Get-PnPAzureADGroup", "Rank": 1 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Id": 381, "CommandName": "Get-PnPAzureADGroup", + "Id": 381, + "Command": "Get-PnPAzureADGroup -Identity $groupId", "Rank": 2 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Id": 382, "CommandName": "Get-PnPAzureADGroup", + "Id": 382, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Rank": 3 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Id": 383, "CommandName": "Get-PnPAzureADGroup", + "Id": 383, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Rank": 4 }, { - "Command": "Get-PnPAzureADGroup -Identity $group", - "Id": 384, "CommandName": "Get-PnPAzureADGroup", + "Id": 384, + "Command": "Get-PnPAzureADGroup -Identity $group", "Rank": 5 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Id": 385, "CommandName": "Get-PnPAzureADGroupMember", + "Id": 385, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Rank": 1 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Id": 386, "CommandName": "Get-PnPAzureADGroupMember", + "Id": 386, + "Command": "Get-PnPAzureADGroupMember -Identity $group", "Rank": 2 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Id": 387, "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 387, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Rank": 1 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Id": 388, "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 388, + "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipal", - "Id": 389, "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 389, + "Command": "Get-PnPAzureADServicePrincipal", "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Id": 390, "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 390, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Id": 391, "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 391, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Rank": 3 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Id": 392, "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 392, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Rank": 4 }, { - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Id": 393, "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 393, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Rank": 5 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 394, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 394, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 395, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 395, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 396, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 396, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Id": 397, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 397, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Rank": 2 }, { - "Command": "Get-PnPAzureADUser", - "Id": 398, "CommandName": "Get-PnPAzureADUser", + "Id": 398, + "Command": "Get-PnPAzureADUser", "Rank": 1 }, { - "Command": "Get-PnPAzureADUser -EndIndex 50", - "Id": 399, "CommandName": "Get-PnPAzureADUser", + "Id": 399, + "Command": "Get-PnPAzureADUser -EndIndex 50", "Rank": 2 }, { - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 400, "CommandName": "Get-PnPAzureADUser", + "Id": 400, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 3 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Id": 401, "CommandName": "Get-PnPAzureADUser", + "Id": 401, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Rank": 4 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Id": 402, "CommandName": "Get-PnPAzureADUser", + "Id": 402, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Rank": 5 }, { - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Id": 403, "CommandName": "Get-PnPAzureADUser", + "Id": 403, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Rank": 6 }, { - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Id": 404, "CommandName": "Get-PnPAzureADUser", + "Id": 404, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Rank": 7 }, { - "Command": "Get-PnPAzureADUser -Delta", - "Id": 405, "CommandName": "Get-PnPAzureADUser", + "Id": 405, + "Command": "Get-PnPAzureADUser -Delta", "Rank": 8 }, { - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Id": 406, "CommandName": "Get-PnPAzureADUser", + "Id": 406, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Rank": 9 }, { - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Id": 407, "CommandName": "Get-PnPAzureADUser", + "Id": 407, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Rank": 10 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Id": 408, "CommandName": "Get-PnPAzureCertificate", + "Id": 408, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Rank": 1 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Id": 409, "CommandName": "Get-PnPAzureCertificate", + "Id": 409, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Id": 410, "CommandName": "Get-PnPAzureCertificate", + "Id": 410, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Rank": 3 }, { - "Command": "Get-PnPBrowserIdleSignout", - "Id": 411, "CommandName": "Get-PnPBrowserIdleSignout", + "Id": 411, + "Command": "Get-PnPBrowserIdleSignout", "Rank": 1 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Id": 412, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 412, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Rank": 1 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 413, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 413, + "Command": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 414, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 414, + "Command": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Id": 415, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 415, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Rank": 2 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Id": 416, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 416, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Rank": 3 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Id": 417, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 417, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Id": 418, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 418, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Rank": 5 }, { - "Command": "Get-PnPChangeLog", - "Id": 419, "CommandName": "Get-PnPChangeLog", + "Id": 419, + "Command": "Get-PnPChangeLog", "Rank": 1 }, { - "Command": "Get-PnPChangeLog -Nightly", - "Id": 420, "CommandName": "Get-PnPChangeLog", + "Id": 420, + "Command": "Get-PnPChangeLog -Nightly", "Rank": 2 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Id": 421, "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 421, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Rank": 1 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Id": 422, "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 422, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Rank": 2 }, { - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", - "Id": 423, "CommandName": "Get-PnPContainer", + "Id": 423, + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", "Rank": 1 }, { - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", - "Id": 424, "CommandName": "Get-PnPContainer", + "Id": 424, + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "Rank": 2 }, { - "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", - "Id": 425, "CommandName": "Get-PnPContainer", + "Id": 425, + "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", "Rank": 3 }, { - "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", - "Id": 426, "CommandName": "Get-PnPContainerTypeConfiguration", + "Id": 426, + "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", "Rank": 1 }, { - "Command": "Get-PnPContentType", - "Id": 427, "CommandName": "Get-PnPContentType", + "Id": 427, + "Command": "Get-PnPContentType", "Rank": 1 }, { - "Command": "Get-PnPContentType -InSiteHierarchy", - "Id": 428, "CommandName": "Get-PnPContentType", + "Id": 428, + "Command": "Get-PnPContentType -InSiteHierarchy", "Rank": 2 }, { - "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Id": 429, "CommandName": "Get-PnPContentType", + "Id": 429, + "Command": "Get-PnPContentType -Identity \"Project Document\"", "Rank": 3 }, { - "Command": "Get-PnPContentType -List \"Documents\"", - "Id": 430, "CommandName": "Get-PnPContentType", + "Id": 430, + "Command": "Get-PnPContentType -List \"Documents\"", "Rank": 4 }, { - "Command": "Get-PnPContentType -Includes \"SchemaXml\"", - "Id": 431, "CommandName": "Get-PnPContentType", + "Id": 431, + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "Rank": 5 }, { - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Id": 432, "CommandName": "Get-PnPContentTypePublishingStatus", + "Id": 432, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1 }, { - "Command": "Get-PnPCustomAction", - "Id": 433, "CommandName": "Get-PnPCustomAction", + "Id": 433, + "Command": "Get-PnPCustomAction", "Rank": 1 }, { - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 434, "CommandName": "Get-PnPCustomAction", + "Id": 434, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2 }, { - "Command": "Get-PnPCustomAction -Scope web", - "Id": 435, "CommandName": "Get-PnPCustomAction", + "Id": 435, + "Command": "Get-PnPCustomAction -Scope web", "Rank": 3 }, { - "Command": "Get-PnPDeletedContainer", - "Id": 436, "CommandName": "Get-PnPDeletedContainer", + "Id": 436, + "Command": "Get-PnPDeletedContainer", "Rank": 1 }, { - "Command": "Get-PnPDeletedMicrosoft365Group", - "Id": 437, "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 437, + "Command": "Get-PnPDeletedMicrosoft365Group", "Rank": 1 }, { - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 438, "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 438, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 2 }, { - "Command": "Get-PnPDeletedTeam", - "Id": 439, "CommandName": "Get-PnPDeletedTeam", + "Id": 439, + "Command": "Get-PnPDeletedTeam", "Rank": 1 }, { - "Command": "Get-PnPDiagnostics", - "Id": 440, "CommandName": "Get-PnPDiagnostics", + "Id": 440, + "Command": "Get-PnPDiagnostics", "Rank": 1 }, { - "Command": "Get-PnPDisableSpacesActivation", - "Id": 441, "CommandName": "Get-PnPDisableSpacesActivation", + "Id": 441, + "Command": "Get-PnPDisableSpacesActivation", "Rank": 1 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Id": 442, "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 442, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Rank": 1 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Id": 443, "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 443, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Rank": 2 }, { - "Command": "Get-PnPEventReceiver", - "Id": 444, "CommandName": "Get-PnPEventReceiver", + "Id": 444, + "Command": "Get-PnPEventReceiver", "Rank": 1 }, { - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 445, "CommandName": "Get-PnPEventReceiver", + "Id": 445, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2 }, { - "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Id": 446, "CommandName": "Get-PnPEventReceiver", + "Id": 446, + "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Rank": 3 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Id": 447, "CommandName": "Get-PnPEventReceiver", + "Id": 447, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Rank": 4 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 448, "CommandName": "Get-PnPEventReceiver", + "Id": 448, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 5 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Id": 449, "CommandName": "Get-PnPEventReceiver", + "Id": 449, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Rank": 6 }, { - "Command": "Get-PnPEventReceiver -Scope Site", - "Id": 450, "CommandName": "Get-PnPEventReceiver", + "Id": 450, + "Command": "Get-PnPEventReceiver -Scope Site", "Rank": 7 }, { - "Command": "Get-PnPEventReceiver -Scope Web", - "Id": 451, "CommandName": "Get-PnPEventReceiver", + "Id": 451, + "Command": "Get-PnPEventReceiver -Scope Web", "Rank": 8 }, { - "Command": "Get-PnPEventReceiver -Scope All", - "Id": 452, "CommandName": "Get-PnPEventReceiver", + "Id": 452, + "Command": "Get-PnPEventReceiver -Scope All", "Rank": 9 }, { - "Command": "Get-PnPException", - "Id": 453, "CommandName": "Get-PnPException", + "Id": 453, + "Command": "Get-PnPException", "Rank": 1 }, { - "Command": "Get-PnPException -All", - "Id": 454, "CommandName": "Get-PnPException", + "Id": 454, + "Command": "Get-PnPException -All", "Rank": 2 }, { - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Id": 455, "CommandName": "Get-PnPExternalUser", + "Id": 455, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Rank": 1 }, { - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Id": 456, "CommandName": "Get-PnPExternalUser", + "Id": 456, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Rank": 2 }, { - "Command": "Get-PnPFeature", - "Id": 457, "CommandName": "Get-PnPFeature", + "Id": 457, + "Command": "Get-PnPFeature", "Rank": 1 }, { - "Command": "Get-PnPFeature -Scope Site", - "Id": 458, "CommandName": "Get-PnPFeature", + "Id": 458, + "Command": "Get-PnPFeature -Scope Site", "Rank": 2 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 459, "CommandName": "Get-PnPFeature", + "Id": 459, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 3 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Id": 460, "CommandName": "Get-PnPFeature", + "Id": 460, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Rank": 4 }, { - "Command": "Get-PnPField", - "Id": 461, "CommandName": "Get-PnPField", + "Id": 461, + "Command": "Get-PnPField", "Rank": 1 }, { - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 462, "CommandName": "Get-PnPField", + "Id": 462, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2 }, { - "Command": "Get-PnPField -Group \"Custom Columns\"", - "Id": 463, "CommandName": "Get-PnPField", + "Id": 463, + "Command": "Get-PnPField -Group \"Custom Columns\"", "Rank": 3 }, { - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Id": 464, "CommandName": "Get-PnPFile", + "Id": 464, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1 }, { - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Id": 465, "CommandName": "Get-PnPFile", + "Id": 465, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Rank": 2 }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Id": 466, "CommandName": "Get-PnPFile", + "Id": 466, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Rank": 3 }, { - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Id": 467, "CommandName": "Get-PnPFile", + "Id": 467, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Rank": 4 }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Id": 468, "CommandName": "Get-PnPFile", + "Id": 468, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Rank": 5 }, { - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Id": 469, "CommandName": "Get-PnPFile", + "Id": 469, + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Rank": 6 }, { - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Id": 470, "CommandName": "Get-PnPFile", + "Id": 470, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Rank": 7 }, { - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"", - "Id": 471, "CommandName": "Get-PnPFileAnalyticsData", + "Id": 471, + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1 }, { - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays", - "Id": 472, "CommandName": "Get-PnPFileAnalyticsData", + "Id": 472, + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays", "Rank": 2 }, { - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", - "Id": 473, "CommandName": "Get-PnPFileAnalyticsData", + "Id": 473, + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "Rank": 3 }, { - "Command": "Get-PnPFileInFolder", - "Id": 474, "CommandName": "Get-PnPFileInFolder", + "Id": 474, + "Command": "Get-PnPFileInFolder", "Rank": 1 }, { - "Command": "Get-PnPFileInFolder -Recurse", - "Id": 475, "CommandName": "Get-PnPFileInFolder", + "Id": 475, + "Command": "Get-PnPFileInFolder -Recurse", "Rank": 2 }, { - "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", - "Id": 476, "CommandName": "Get-PnPFileInFolder", + "Id": 476, + "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", "Rank": 3 }, { - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Id": 477, "CommandName": "Get-PnPFileInFolder", + "Id": 477, + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4 }, { - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", - "Id": 478, "CommandName": "Get-PnPFileInFolder", + "Id": 478, + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", "Rank": 5 }, { - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 479, "CommandName": "Get-PnPFileSharingLink", + "Id": 479, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1 }, { - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Id": 480, "CommandName": "Get-PnPFileVersion", + "Id": 480, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Rank": 1 }, { - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Id": 481, "CommandName": "Get-PnPFileVersion", + "Id": 481, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Rank": 2 }, { - "Command": "Get-PnPFlow -AsAdmin", - "Id": 482, "CommandName": "Get-PnPFlow", + "Id": 482, + "Command": "Get-PnPFlow -AsAdmin", "Rank": 1 }, { - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Id": 483, "CommandName": "Get-PnPFlow", + "Id": 483, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Rank": 2 }, { - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Id": 484, "CommandName": "Get-PnPFlow", + "Id": 484, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Rank": 3 }, { - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Id": 485, "CommandName": "Get-PnPFlowOwner", + "Id": 485, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Rank": 1 }, { - "Command": "Get-PnPFolder", - "Id": 486, "CommandName": "Get-PnPFolder", + "Id": 486, + "Command": "Get-PnPFolder", "Rank": 1 }, { - "Command": "Get-PnPFolder -CurrentWebRootFolder", - "Id": 487, "CommandName": "Get-PnPFolder", + "Id": 487, + "Command": "Get-PnPFolder -CurrentWebRootFolder", "Rank": 2 }, { - "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Id": 488, "CommandName": "Get-PnPFolder", + "Id": 488, + "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Rank": 3 }, { - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Id": 489, "CommandName": "Get-PnPFolder", + "Id": 489, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Rank": 4 }, { - "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", - "Id": 490, "CommandName": "Get-PnPFolder", + "Id": 490, + "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", "Rank": 5 }, { - "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Id": 491, "CommandName": "Get-PnPFolder", + "Id": 491, + "Command": "Get-PnPFolder -List \"Shared Documents\"", "Rank": 6 }, { - "Command": "Get-PnPFolderInFolder", - "Id": 492, "CommandName": "Get-PnPFolderInFolder", + "Id": 492, + "Command": "Get-PnPFolderInFolder", "Rank": 1 }, { - "Command": "Get-PnPFolderInFolder -Recurse", - "Id": 493, "CommandName": "Get-PnPFolderInFolder", + "Id": 493, + "Command": "Get-PnPFolderInFolder -Recurse", "Rank": 2 }, { - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", - "Id": 494, "CommandName": "Get-PnPFolderInFolder", + "Id": 494, + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", "Rank": 3 }, { - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Id": 495, "CommandName": "Get-PnPFolderInFolder", + "Id": 495, + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Rank": 4 }, { - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Id": 496, "CommandName": "Get-PnPFolderInFolder", + "Id": 496, + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Rank": 5 }, { - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", - "Id": 497, "CommandName": "Get-PnPFolderInFolder", + "Id": 497, + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", "Rank": 6 }, { - "Command": "Get-PnPFolderItem", - "Id": 498, "CommandName": "Get-PnPFolderItem", + "Id": 498, + "Command": "Get-PnPFolderItem", "Rank": 1 }, { - "Command": "Get-PnPFolderItem -Recurse", - "Id": 499, "CommandName": "Get-PnPFolderItem", + "Id": 499, + "Command": "Get-PnPFolderItem -Recurse", "Rank": 2 }, { - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Id": 500, "CommandName": "Get-PnPFolderItem", + "Id": 500, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Rank": 3 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Id": 501, "CommandName": "Get-PnPFolderItem", + "Id": 501, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Id": 502, "CommandName": "Get-PnPFolderItem", + "Id": 502, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Rank": 5 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Id": 503, "CommandName": "Get-PnPFolderItem", + "Id": 503, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6 }, { - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 504, "CommandName": "Get-PnPFolderSharingLink", + "Id": 504, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1 }, { - "Command": "Get-PnPFolderStorageMetric", - "Id": 505, "CommandName": "Get-PnPFolderStorageMetric", + "Id": 505, + "Command": "Get-PnPFolderStorageMetric", "Rank": 1 }, { - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Id": 506, "CommandName": "Get-PnPFolderStorageMetric", + "Id": 506, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Rank": 2 }, { - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Id": 507, "CommandName": "Get-PnPFolderStorageMetric", + "Id": 507, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Rank": 3 }, { - "Command": "Get-PnPFooter", - "Id": 508, "CommandName": "Get-PnPFooter", + "Id": 508, + "Command": "Get-PnPFooter", "Rank": 1 }, { - "Command": "Get-PnPGraphAccessToken", - "Id": 509, "CommandName": "Get-PnPGraphAccessToken", + "Id": 509, + "Command": "Get-PnPGraphAccessToken", "Rank": 1 }, { - "Command": "Get-PnPGraphAccessToken -Decoded", - "Id": 510, "CommandName": "Get-PnPGraphAccessToken", + "Id": 510, + "Command": "Get-PnPGraphAccessToken -Decoded", "Rank": 2 }, { - "Command": "Get-PnPGraphSubscription", - "Id": 511, "CommandName": "Get-PnPGraphSubscription", + "Id": 511, + "Command": "Get-PnPGraphSubscription", "Rank": 1 }, { - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 512, "CommandName": "Get-PnPGraphSubscription", + "Id": 512, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 2 }, { - "Command": "Get-PnPGroup", - "Id": 513, "CommandName": "Get-PnPGroup", + "Id": 513, + "Command": "Get-PnPGroup", "Rank": 1 }, { - "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Id": 514, "CommandName": "Get-PnPGroup", + "Id": 514, + "Command": "Get-PnPGroup -Identity 'My Site Users'", "Rank": 2 }, { - "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Id": 515, "CommandName": "Get-PnPGroup", + "Id": 515, + "Command": "Get-PnPGroup -AssociatedMemberGroup", "Rank": 3 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Id": 516, "CommandName": "Get-PnPGroupMember", + "Id": 516, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Rank": 1 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Id": 517, "CommandName": "Get-PnPGroupMember", + "Id": 517, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Rank": 2 }, { - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Id": 518, "CommandName": "Get-PnPGroupPermissions", + "Id": 518, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Rank": 1 }, { - "Command": "Get-PnPHideDefaultThemes", - "Id": 519, "CommandName": "Get-PnPHideDefaultThemes", + "Id": 519, + "Command": "Get-PnPHideDefaultThemes", "Rank": 1 }, { - "Command": "Get-PnPHomePage", - "Id": 520, "CommandName": "Get-PnPHomePage", + "Id": 520, + "Command": "Get-PnPHomePage", "Rank": 1 }, { - "Command": "Get-PnPHomeSite", - "Id": 521, "CommandName": "Get-PnPHomeSite", + "Id": 521, + "Command": "Get-PnPHomeSite", "Rank": 1 }, { - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Id": 522, "CommandName": "Get-PnPHomeSite", + "Id": 522, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Rank": 2 }, { - "Command": "Get-PnPHomeSite -Detailed", - "Id": 523, "CommandName": "Get-PnPHomeSite", + "Id": 523, + "Command": "Get-PnPHomeSite -Detailed", "Rank": 3 }, { - "Command": "Get-PnPHubSite", - "Id": 524, "CommandName": "Get-PnPHubSite", + "Id": 524, + "Command": "Get-PnPHubSite", "Rank": 1 }, { - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 525, "CommandName": "Get-PnPHubSite", + "Id": 525, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2 }, { - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Id": 526, "CommandName": "Get-PnPHubSite", + "Id": 526, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Rank": 3 }, { - "Command": "Get-PnPHubSiteChild", - "Id": 527, "CommandName": "Get-PnPHubSiteChild", + "Id": 527, + "Command": "Get-PnPHubSiteChild", "Rank": 1 }, { - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 528, "CommandName": "Get-PnPHubSiteChild", + "Id": 528, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2 }, { - "Command": "Get-PnPInPlaceRecordsManagement", - "Id": 529, "CommandName": "Get-PnPInPlaceRecordsManagement", + "Id": 529, + "Command": "Get-PnPInPlaceRecordsManagement", "Rank": 1 }, { - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Id": 530, "CommandName": "Get-PnPIsSiteAliasAvailable", + "Id": 530, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Rank": 1 }, { - "Command": "Get-PnPJavaScriptLink", - "Id": 531, "CommandName": "Get-PnPJavaScriptLink", + "Id": 531, + "Command": "Get-PnPJavaScriptLink", "Rank": 1 }, { - "Command": "Get-PnPJavaScriptLink -Scope All", - "Id": 532, "CommandName": "Get-PnPJavaScriptLink", + "Id": 532, + "Command": "Get-PnPJavaScriptLink -Scope All", "Rank": 2 }, { - "Command": "Get-PnPJavaScriptLink -Scope Web", - "Id": 533, "CommandName": "Get-PnPJavaScriptLink", + "Id": 533, + "Command": "Get-PnPJavaScriptLink -Scope Web", "Rank": 3 }, { - "Command": "Get-PnPJavaScriptLink -Scope Site", - "Id": 534, "CommandName": "Get-PnPJavaScriptLink", + "Id": 534, + "Command": "Get-PnPJavaScriptLink -Scope Site", "Rank": 4 }, { - "Command": "Get-PnPJavaScriptLink -Name Test", - "Id": 535, "CommandName": "Get-PnPJavaScriptLink", + "Id": 535, + "Command": "Get-PnPJavaScriptLink -Name Test", "Rank": 5 }, { - "Command": "Get-PnPKnowledgeHubSite", - "Id": 536, "CommandName": "Get-PnPKnowledgeHubSite", + "Id": 536, + "Command": "Get-PnPKnowledgeHubSite", "Rank": 1 }, { - "Command": "Get-PnPLabel", - "Id": 537, "CommandName": "Get-PnPLabel", + "Id": 537, + "Command": "Get-PnPLabel", "Rank": 1 }, { - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Id": 538, "CommandName": "Get-PnPLabel", + "Id": 538, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Rank": 2 }, { - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Id": 539, "CommandName": "Get-PnPLargeListOperationStatus", + "Id": 539, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Rank": 1 }, { - "Command": "Get-PnPList", - "Id": 540, "CommandName": "Get-PnPList", + "Id": 540, + "Command": "Get-PnPList", "Rank": 1 }, { - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 541, "CommandName": "Get-PnPList", + "Id": 541, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 2 }, { - "Command": "Get-PnPList -Identity Lists/Announcements", - "Id": 542, "CommandName": "Get-PnPList", + "Id": 542, + "Command": "Get-PnPList -Identity Lists/Announcements", "Rank": 3 }, { - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Id": 543, "CommandName": "Get-PnPList", + "Id": 543, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Rank": 4 }, { - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Id": 544, "CommandName": "Get-PnPList", + "Id": 544, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Rank": 5 }, { - "Command": "Get-PnPListDesign", - "Id": 545, "CommandName": "Get-PnPListDesign", + "Id": 545, + "Command": "Get-PnPListDesign", "Rank": 1 }, { - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 546, "CommandName": "Get-PnPListDesign", + "Id": 546, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2 }, { - "Command": "Get-PnPListDesign -Identity ListEvent", - "Id": 547, "CommandName": "Get-PnPListDesign", + "Id": 547, + "Command": "Get-PnPListDesign -Identity ListEvent", "Rank": 3 }, { - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Id": 548, "CommandName": "Get-PnPListInformationRightsManagement", + "Id": 548, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Rank": 1 }, { - "Command": "Get-PnPListItem -List Tasks", - "Id": 549, "CommandName": "Get-PnPListItem", + "Id": 549, + "Command": "Get-PnPListItem -List Tasks", "Rank": 1 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1", - "Id": 550, "CommandName": "Get-PnPListItem", + "Id": 550, + "Command": "Get-PnPListItem -List Tasks -Id 1", "Rank": 2 }, { - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Id": 551, "CommandName": "Get-PnPListItem", + "Id": 551, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Rank": 3 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"", - "Id": 552, "CommandName": "Get-PnPListItem", + "Id": 552, + "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"", "Rank": 4 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"", - "Id": 553, "CommandName": "Get-PnPListItem", + "Id": 553, + "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"", "Rank": 5 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Id": 554, "CommandName": "Get-PnPListItem", + "Id": 554, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Rank": 6 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Id": 555, "CommandName": "Get-PnPListItem", + "Id": 555, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Rank": 7 }, { - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Id": 556, "CommandName": "Get-PnPListItem", + "Id": 556, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Rank": 8 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Id": 557, "CommandName": "Get-PnPListItem", + "Id": 557, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Rank": 9 }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Id": 558, "CommandName": "Get-PnPListItemAttachment", + "Id": 558, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Rank": 1 }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "Id": 559, "CommandName": "Get-PnPListItemAttachment", + "Id": 559, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Rank": 2 }, { - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Id": 560, "CommandName": "Get-PnPListItemComment", + "Id": 560, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Rank": 1 }, { - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Id": 561, "CommandName": "Get-PnPListItemPermission", + "Id": 561, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Rank": 1 }, { - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Id": 562, "CommandName": "Get-PnPListItemVersion", + "Id": 562, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Rank": 1 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Id": 563, "CommandName": "Get-PnPListPermissions", + "Id": 563, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Rank": 1 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Id": 564, "CommandName": "Get-PnPListPermissions", + "Id": 564, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2 }, { - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Id": 565, "CommandName": "Get-PnPListRecordDeclaration", + "Id": 565, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Rank": 1 }, { - "Command": "Get-PnPMasterPage", - "Id": 566, "CommandName": "Get-PnPMasterPage", + "Id": 566, + "Command": "Get-PnPMasterPage", "Rank": 1 }, { - "Command": "Get-PnPMessageCenterAnnouncement", - "Id": 567, "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 567, + "Command": "Get-PnPMessageCenterAnnouncement", "Rank": 1 }, { - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Id": 568, "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 568, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 569, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 569, + "Command": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Id": 570, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 570, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365Group", - "Id": 571, "CommandName": "Get-PnPMicrosoft365Group", + "Id": 571, + "Command": "Get-PnPMicrosoft365Group", "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Id": 572, "CommandName": "Get-PnPMicrosoft365Group", + "Id": 572, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Id": 573, "CommandName": "Get-PnPMicrosoft365Group", + "Id": 573, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Id": 574, "CommandName": "Get-PnPMicrosoft365Group", + "Id": 574, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Rank": 4 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Id": 575, "CommandName": "Get-PnPMicrosoft365Group", + "Id": 575, + "Command": "Get-PnPMicrosoft365Group -Identity $group", "Rank": 5 }, { - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Id": 576, "CommandName": "Get-PnPMicrosoft365Group", + "Id": 576, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Rank": 6 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 577, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 577, + "Command": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Id": 578, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 578, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 579, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 579, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Id": 580, "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 580, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Id": 581, "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 581, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Id": 582, "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 582, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Id": 583, "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 583, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Id": 584, "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 584, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupSettings", - "Id": 585, "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 585, + "Command": "Get-PnPMicrosoft365GroupSettings", "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Id": 586, "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 586, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 587, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 587, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Id": 588, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 588, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupTeam", - "Id": 589, "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 589, + "Command": "Get-PnPMicrosoft365GroupTeam", "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Id": 590, "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 590, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 591, "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 591, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 592, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 592, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Id": 593, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 593, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 594, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 594, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3 }, { - "Command": "Get-PnPNavigationNode", - "Id": 595, "CommandName": "Get-PnPNavigationNode", + "Id": 595, + "Command": "Get-PnPNavigationNode", "Rank": 1 }, { - "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Id": 596, "CommandName": "Get-PnPNavigationNode", + "Id": 596, + "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Rank": 2 }, { - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Id": 597, "CommandName": "Get-PnPNavigationNode", + "Id": 597, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Rank": 3 }, { - "Command": "Get-PnPOrgAssetsLibrary", - "Id": 598, "CommandName": "Get-PnPOrgAssetsLibrary", + "Id": 598, + "Command": "Get-PnPOrgAssetsLibrary", "Rank": 1 }, { - "Command": "Get-PnPOrgNewsSite", - "Id": 599, "CommandName": "Get-PnPOrgNewsSite", + "Id": 599, + "Command": "Get-PnPOrgNewsSite", "Rank": 1 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Id": 600, "CommandName": "Get-PnPPage", + "Id": 600, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Rank": 1 }, { - "Command": "Get-PnPPage \"MyPage\"", - "Id": 601, "CommandName": "Get-PnPPage", + "Id": 601, + "Command": "Get-PnPPage \"MyPage\"", "Rank": 2 }, { - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Id": 602, "CommandName": "Get-PnPPage", + "Id": 602, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Rank": 3 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Id": 603, "CommandName": "Get-PnPPage", + "Id": 603, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Rank": 4 }, { - "Command": "Get-PnPPageComponent -Page Home", - "Id": 604, "CommandName": "Get-PnPPageComponent", + "Id": 604, + "Command": "Get-PnPPageComponent -Page Home", "Rank": 1 }, { - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 605, "CommandName": "Get-PnPPageComponent", + "Id": 605, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2 }, { - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Id": 606, "CommandName": "Get-PnPPageComponent", + "Id": 606, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Rank": 3 }, { - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 607, "CommandName": "Get-PnPPlannerBucket", + "Id": 607, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1 }, { - "Command": "Get-PnPPlannerConfiguration", - "Id": 608, "CommandName": "Get-PnPPlannerConfiguration", + "Id": 608, + "Command": "Get-PnPPlannerConfiguration", "Rank": 1 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Id": 609, "CommandName": "Get-PnPPlannerPlan", + "Id": 609, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Rank": 1 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Id": 610, "CommandName": "Get-PnPPlannerPlan", + "Id": 610, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Rank": 2 }, { - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Id": 611, "CommandName": "Get-PnPPlannerPlan", + "Id": 611, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Rank": 3 }, { - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 612, "CommandName": "Get-PnPPlannerRosterMember", + "Id": 612, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1 }, { - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Id": 613, "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 613, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Rank": 1 }, { - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 614, "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 614, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 2 }, { - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 615, "CommandName": "Get-PnPPlannerTask", + "Id": 615, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1 }, { - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 616, "CommandName": "Get-PnPPlannerTask", + "Id": 616, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 2 }, { - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 617, "CommandName": "Get-PnPPlannerTask", + "Id": 617, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 3 }, { - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 618, "CommandName": "Get-PnPPlannerUserPolicy", + "Id": 618, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Id": 619, "CommandName": "Get-PnPPowerPlatformConnector", + "Id": 619, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformEnvironment", - "Id": 620, "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 620, + "Command": "Get-PnPPowerPlatformEnvironment", "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Id": 621, "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 621, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Rank": 2 }, { - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Id": 622, "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 622, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Rank": 3 }, { - "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)", - "Id": 623, "CommandName": "Get-PnPPowerPlatformSolution", + "Id": 623, + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)", "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'", - "Id": 624, "CommandName": "Get-PnPPowerPlatformSolution", + "Id": 624, + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'", "Rank": 2 }, { - "Command": "Get-PnPPowerShellTelemetryEnabled", - "Id": 625, "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Id": 625, + "Command": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1 }, { - "Command": "Get-PnPPropertyBag", - "Id": 626, "CommandName": "Get-PnPPropertyBag", + "Id": 626, + "Command": "Get-PnPPropertyBag", "Rank": 1 }, { - "Command": "Get-PnPPropertyBag -Key MyKey", - "Id": 627, "CommandName": "Get-PnPPropertyBag", + "Id": 627, + "Command": "Get-PnPPropertyBag -Key MyKey", "Rank": 2 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Id": 628, "CommandName": "Get-PnPPropertyBag", + "Id": 628, + "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Rank": 3 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Id": 629, "CommandName": "Get-PnPPropertyBag", + "Id": 629, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Rank": 4 }, { - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Id": 630, "CommandName": "Get-PnPPropertyBag", + "Id": 630, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Rank": 5 }, { - "Command": "Get-PnPPublishingImageRendition", - "Id": 631, "CommandName": "Get-PnPPublishingImageRendition", + "Id": 631, + "Command": "Get-PnPPublishingImageRendition", "Rank": 1 }, { - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Id": 632, "CommandName": "Get-PnPPublishingImageRendition", + "Id": 632, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Rank": 2 }, { - "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Id": 633, "CommandName": "Get-PnPPublishingImageRendition", + "Id": 633, + "Command": "Get-PnPPublishingImageRendition -Identity 2", "Rank": 3 }, { - "Command": "Get-PnPRecycleBinItem", - "Id": 634, "CommandName": "Get-PnPRecycleBinItem", + "Id": 634, + "Command": "Get-PnPRecycleBinItem", "Rank": 1 }, { - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Id": 635, "CommandName": "Get-PnPRecycleBinItem", + "Id": 635, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Rank": 2 }, { - "Command": "Get-PnPRecycleBinItem -FirstStage", - "Id": 636, "CommandName": "Get-PnPRecycleBinItem", + "Id": 636, + "Command": "Get-PnPRecycleBinItem -FirstStage", "Rank": 3 }, { - "Command": "Get-PnPRecycleBinItem -SecondStage", - "Id": 637, "CommandName": "Get-PnPRecycleBinItem", + "Id": 637, + "Command": "Get-PnPRecycleBinItem -SecondStage", "Rank": 4 }, { - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Id": 638, "CommandName": "Get-PnPRecycleBinItem", + "Id": 638, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Rank": 5 }, { - "Command": "Get-PnPRequestAccessEmails", - "Id": 639, "CommandName": "Get-PnPRequestAccessEmails", + "Id": 639, + "Command": "Get-PnPRequestAccessEmails", "Rank": 1 }, { - "Command": "Get-PnPRetentionLabel", - "Id": 640, "CommandName": "Get-PnPRetentionLabel", + "Id": 640, + "Command": "Get-PnPRetentionLabel", "Rank": 1 }, { - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Id": 641, "CommandName": "Get-PnPRetentionLabel", + "Id": 641, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Rank": 2 }, { - "Command": "Get-PnPRoleDefinition", - "Id": 642, "CommandName": "Get-PnPRoleDefinition", + "Id": 642, + "Command": "Get-PnPRoleDefinition", "Rank": 1 }, { - "Command": "Get-PnPRoleDefinition -Identity Read", - "Id": 643, "CommandName": "Get-PnPRoleDefinition", + "Id": 643, + "Command": "Get-PnPRoleDefinition -Identity Read", "Rank": 2 }, { - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Id": 644, "CommandName": "Get-PnPRoleDefinition", + "Id": 644, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Rank": 3 }, { - "Command": "Get-PnPSearchConfiguration", - "Id": 645, "CommandName": "Get-PnPSearchConfiguration", + "Id": 645, + "Command": "Get-PnPSearchConfiguration", "Rank": 1 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site", - "Id": 646, "CommandName": "Get-PnPSearchConfiguration", + "Id": 646, + "Command": "Get-PnPSearchConfiguration -Scope Site", "Rank": 2 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Id": 647, "CommandName": "Get-PnPSearchConfiguration", + "Id": 647, + "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Rank": 3 }, { - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 648, "CommandName": "Get-PnPSearchConfiguration", + "Id": 648, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Id": 649, "CommandName": "Get-PnPSearchConfiguration", + "Id": 649, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Rank": 5 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Id": 650, "CommandName": "Get-PnPSearchConfiguration", + "Id": 650, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Rank": 6 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Id": 651, "CommandName": "Get-PnPSearchConfiguration", + "Id": 651, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Rank": 7 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Id": 652, "CommandName": "Get-PnPSearchConfiguration", + "Id": 652, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Rank": 8 }, { - "Command": "Get-PnPSearchCrawlLog", - "Id": 653, "CommandName": "Get-PnPSearchCrawlLog", + "Id": 653, + "Command": "Get-PnPSearchCrawlLog", "Rank": 1 }, { - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Id": 654, "CommandName": "Get-PnPSearchCrawlLog", + "Id": 654, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Rank": 2 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Id": 655, "CommandName": "Get-PnPSearchCrawlLog", + "Id": 655, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Rank": 3 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Id": 656, "CommandName": "Get-PnPSearchCrawlLog", + "Id": 656, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Rank": 4 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Id": 657, "CommandName": "Get-PnPSearchCrawlLog", + "Id": 657, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Rank": 5 }, { - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Id": 658, "CommandName": "Get-PnPSearchCrawlLog", + "Id": 658, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Rank": 6 }, { - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Id": 659, "CommandName": "Get-PnPSearchCrawlLog", + "Id": 659, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Rank": 7 }, { - "Command": "Get-PnPSearchSettings", - "Id": 660, "CommandName": "Get-PnPSearchSettings", + "Id": 660, + "Command": "Get-PnPSearchSettings", "Rank": 1 }, { - "Command": "Get-PnPServiceCurrentHealth", - "Id": 661, "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 661, + "Command": "Get-PnPServiceCurrentHealth", "Rank": 1 }, { - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Id": 662, "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 662, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Rank": 2 }, { - "Command": "Get-PnPServiceHealthIssue", - "Id": 663, "CommandName": "Get-PnPServiceHealthIssue", + "Id": 663, + "Command": "Get-PnPServiceHealthIssue", "Rank": 1 }, { - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Id": 664, "CommandName": "Get-PnPServiceHealthIssue", + "Id": 664, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Rank": 2 }, { - "Command": "Get-PnPSharePointAddIn", - "Id": 665, "CommandName": "Get-PnPSharePointAddIn", + "Id": 665, + "Command": "Get-PnPSharePointAddIn", "Rank": 1 }, { - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Id": 666, "CommandName": "Get-PnPSharePointAddIn", + "Id": 666, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Rank": 2 }, { - "Command": "Get-PnPSharingForNonOwnersOfSite", - "Id": 667, "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Id": 667, + "Command": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1 }, { - "Command": "Get-PnPSite", - "Id": 668, "CommandName": "Get-PnPSite", + "Id": 668, + "Command": "Get-PnPSite", "Rank": 1 }, { - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Id": 669, "CommandName": "Get-PnPSite", + "Id": 669, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Rank": 2 }, { - "Command": "Get-PnPSiteAnalyticsData -All", - "Id": 670, "CommandName": "Get-PnPSiteAnalyticsData", + "Id": 670, + "Command": "Get-PnPSiteAnalyticsData -All", "Rank": 1 }, { - "Command": "Get-PnPSiteAnalyticsData -LastSevenDays", - "Id": 671, "CommandName": "Get-PnPSiteAnalyticsData", + "Id": 671, + "Command": "Get-PnPSiteAnalyticsData -LastSevenDays", "Rank": 2 }, { - "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", - "Id": 672, "CommandName": "Get-PnPSiteAnalyticsData", + "Id": 672, + "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "Rank": 3 }, { - "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", - "Id": 673, "CommandName": "Get-PnPSiteAnalyticsData", + "Id": 673, + "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "Rank": 4 }, { - "Command": "Get-PnPSiteClosure", - "Id": 674, "CommandName": "Get-PnPSiteClosure", + "Id": 674, + "Command": "Get-PnPSiteClosure", "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAdmin", - "Id": 675, "CommandName": "Get-PnPSiteCollectionAdmin", + "Id": 675, + "Command": "Get-PnPSiteCollectionAdmin", "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAppCatalog", - "Id": 676, "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 676, + "Command": "Get-PnPSiteCollectionAppCatalog", "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Id": 677, "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 677, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Rank": 2 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Id": 678, "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 678, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Rank": 3 }, { - "Command": "Get-PnPSiteCollectionTermStore", - "Id": 679, "CommandName": "Get-PnPSiteCollectionTermStore", + "Id": 679, + "Command": "Get-PnPSiteCollectionTermStore", "Rank": 1 }, { - "Command": "Get-PnPSiteDesign", - "Id": 680, "CommandName": "Get-PnPSiteDesign", + "Id": 680, + "Command": "Get-PnPSiteDesign", "Rank": 1 }, { - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 681, "CommandName": "Get-PnPSiteDesign", + "Id": 681, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2 }, { - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 682, "CommandName": "Get-PnPSiteDesignRights", + "Id": 682, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1 }, { - "Command": "Get-PnPSiteDesignRun", - "Id": 683, "CommandName": "Get-PnPSiteDesignRun", + "Id": 683, + "Command": "Get-PnPSiteDesignRun", "Rank": 1 }, { - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Id": 684, "CommandName": "Get-PnPSiteDesignRun", + "Id": 684, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Rank": 2 }, { - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 685, "CommandName": "Get-PnPSiteDesignTask", + "Id": 685, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1 }, { - "Command": "Get-PnPSiteDesignTask", - "Id": 686, "CommandName": "Get-PnPSiteDesignTask", + "Id": 686, + "Command": "Get-PnPSiteDesignTask", "Rank": 2 }, { - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 687, "CommandName": "Get-PnPSiteDesignTask", + "Id": 687, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 3 }, { - "Command": "Get-PnPSiteGroup", - "Id": 688, "CommandName": "Get-PnPSiteGroup", + "Id": 688, + "Command": "Get-PnPSiteGroup", "Rank": 1 }, { - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 689, "CommandName": "Get-PnPSiteGroup", + "Id": 689, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 2 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Id": 690, "CommandName": "Get-PnPSiteGroup", + "Id": 690, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Rank": 3 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 691, "CommandName": "Get-PnPSiteGroup", + "Id": 691, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 4 }, { - "Command": "Get-PnPSitePolicy", - "Id": 692, "CommandName": "Get-PnPSitePolicy", + "Id": 692, + "Command": "Get-PnPSitePolicy", "Rank": 1 }, { - "Command": "Get-PnPSitePolicy -AllAvailable", - "Id": 693, "CommandName": "Get-PnPSitePolicy", + "Id": 693, + "Command": "Get-PnPSitePolicy -AllAvailable", "Rank": 2 }, { - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 694, "CommandName": "Get-PnPSitePolicy", + "Id": 694, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 3 }, { - "Command": "Get-PnPSiteScript", - "Id": 695, "CommandName": "Get-PnPSiteScript", + "Id": 695, + "Command": "Get-PnPSiteScript", "Rank": 1 }, { - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 696, "CommandName": "Get-PnPSiteScript", + "Id": 696, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2 }, { - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Id": 697, "CommandName": "Get-PnPSiteScriptFromList", + "Id": 697, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Rank": 1 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Id": 698, "CommandName": "Get-PnPSiteScriptFromList", + "Id": 698, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Rank": 2 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Id": 699, "CommandName": "Get-PnPSiteScriptFromList", + "Id": 699, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Rank": 3 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Id": 700, "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 700, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Rank": 1 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Id": 701, "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 701, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Rank": 2 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Id": 702, "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 702, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Rank": 3 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Id": 703, "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 703, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Rank": 4 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Id": 704, "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 704, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Rank": 5 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Id": 705, "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 705, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Rank": 6 }, { - "Command": "Get-PnPSiteSearchQueryResults", - "Id": 706, "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 706, + "Command": "Get-PnPSiteSearchQueryResults", "Rank": 1 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Id": 707, "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 707, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Rank": 2 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Id": 708, "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 708, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Rank": 3 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Id": 709, "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 709, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Rank": 4 }, { - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Id": 710, "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 710, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Rank": 5 }, { - "Command": "Get-PnPSiteSearchQueryResults -All", - "Id": 711, "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 711, + "Command": "Get-PnPSiteSearchQueryResults -All", "Rank": 6 }, { - "Command": "Get-PnPSiteSensitivityLabel", - "Id": 712, "CommandName": "Get-PnPSiteSensitivityLabel", + "Id": 712, + "Command": "Get-PnPSiteSensitivityLabel", "Rank": 1 }, { - "Command": "Get-PnPSiteSetVersionPolicyProgress", - "Id": 713, "CommandName": "Get-PnPSiteSetVersionPolicyProgress", + "Id": 713, + "Command": "Get-PnPSiteSetVersionPolicyProgress", "Rank": 1 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Id": 714, "CommandName": "Get-PnPSiteTemplate", + "Id": 714, + "Command": "Get-PnPSiteTemplate -Out template.pnp", "Rank": 1 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml", - "Id": 715, "CommandName": "Get-PnPSiteTemplate", + "Id": 715, + "Command": "Get-PnPSiteTemplate -Out template.xml", "Rank": 2 }, { - "Command": "Get-PnPSiteTemplate -Out template.md", - "Id": 716, "CommandName": "Get-PnPSiteTemplate", + "Id": 716, + "Command": "Get-PnPSiteTemplate -Out template.md", "Rank": 3 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Id": 717, "CommandName": "Get-PnPSiteTemplate", + "Id": 717, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Rank": 4 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Id": 718, "CommandName": "Get-PnPSiteTemplate", + "Id": 718, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Rank": 5 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Id": 719, "CommandName": "Get-PnPSiteTemplate", + "Id": 719, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Rank": 6 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Id": 720, "CommandName": "Get-PnPSiteTemplate", + "Id": 720, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Rank": 7 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Id": 721, "CommandName": "Get-PnPSiteTemplate", + "Id": 721, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Rank": 8 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Id": 722, "CommandName": "Get-PnPSiteTemplate", + "Id": 722, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Rank": 9 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Id": 723, "CommandName": "Get-PnPSiteTemplate", + "Id": 723, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Rank": 10 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Id": 724, "CommandName": "Get-PnPSiteTemplate", + "Id": 724, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Rank": 11 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Id": 725, "CommandName": "Get-PnPSiteTemplate", + "Id": 725, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Rank": 12 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "Id": 726, "CommandName": "Get-PnPSiteTemplate", + "Id": 726, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "Rank": 13 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Id": 727, "CommandName": "Get-PnPSiteTemplate", + "Id": 727, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Rank": 14 }, { - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 728, "CommandName": "Get-PnPSiteUserInvitations", + "Id": 728, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1 }, { - "Command": "Get-PnPSiteVersionPolicy", - "Id": 729, "CommandName": "Get-PnPSiteVersionPolicy", + "Id": 729, + "Command": "Get-PnPSiteVersionPolicy", "Rank": 1 }, { - "Command": "Get-PnPStorageEntity", - "Id": 730, "CommandName": "Get-PnPStorageEntity", + "Id": 730, + "Command": "Get-PnPStorageEntity", "Rank": 1 }, { - "Command": "Get-PnPStorageEntity -Key MyKey", - "Id": 731, "CommandName": "Get-PnPStorageEntity", + "Id": 731, + "Command": "Get-PnPStorageEntity -Key MyKey", "Rank": 2 }, { - "Command": "Get-PnPStorageEntity -Scope Site", - "Id": 732, "CommandName": "Get-PnPStorageEntity", + "Id": 732, + "Command": "Get-PnPStorageEntity -Scope Site", "Rank": 3 }, { - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 733, "CommandName": "Get-PnPStorageEntity", + "Id": 733, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 4 }, { - "Command": "Get-PnPStoredCredential -Name O365", - "Id": 734, "CommandName": "Get-PnPStoredCredential", + "Id": 734, + "Command": "Get-PnPStoredCredential -Name O365", "Rank": 1 }, { - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 735, "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Id": 735, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1 }, { - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 736, "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Id": 736, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1 }, { - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Id": 737, "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Id": 737, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Rank": 1 }, { - "Command": "Get-PnPSubWeb", - "Id": 738, "CommandName": "Get-PnPSubWeb", + "Id": 738, + "Command": "Get-PnPSubWeb", "Rank": 1 }, { - "Command": "Get-PnPSubWeb -Recurse", - "Id": 739, "CommandName": "Get-PnPSubWeb", + "Id": 739, + "Command": "Get-PnPSubWeb -Recurse", "Rank": 2 }, { - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Id": 740, "CommandName": "Get-PnPSubWeb", + "Id": 740, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Rank": 3 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Id": 741, "CommandName": "Get-PnPSubWeb", + "Id": 741, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Rank": 4 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Id": 742, "CommandName": "Get-PnPSubWeb", + "Id": 742, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Rank": 5 }, { - "Command": "Get-PnPSyntexModel", - "Id": 743, "CommandName": "Get-PnPSyntexModel", + "Id": 743, + "Command": "Get-PnPSyntexModel", "Rank": 1 }, { - "Command": "Get-PnPSyntexModel -Identity 1", - "Id": 744, "CommandName": "Get-PnPSyntexModel", + "Id": 744, + "Command": "Get-PnPSyntexModel -Identity 1", "Rank": 2 }, { - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Id": 745, "CommandName": "Get-PnPSyntexModel", + "Id": 745, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Rank": 3 }, { - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Id": 746, "CommandName": "Get-PnPSyntexModelPublication", + "Id": 746, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Rank": 1 }, { - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Id": 747, "CommandName": "Get-PnPTaxonomyItem", + "Id": 747, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Rank": 1 }, { - "Command": "Get-PnPTeamsApp", - "Id": 748, "CommandName": "Get-PnPTeamsApp", + "Id": 748, + "Command": "Get-PnPTeamsApp", "Rank": 1 }, { - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Id": 749, "CommandName": "Get-PnPTeamsApp", + "Id": 749, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Rank": 2 }, { - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Id": 750, "CommandName": "Get-PnPTeamsApp", + "Id": 750, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Rank": 3 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Id": 751, "CommandName": "Get-PnPTeamsChannel", + "Id": 751, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Rank": 1 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Id": 752, "CommandName": "Get-PnPTeamsChannel", + "Id": 752, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Rank": 2 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 753, "CommandName": "Get-PnPTeamsChannel", + "Id": 753, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 3 }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Id": 754, "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 754, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Rank": 1 }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 755, "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 755, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Id": 756, "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 756, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Rank": 1 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Id": 757, "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 757, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Id": 758, "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 758, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Rank": 1 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Id": 759, "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 759, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Id": 760, "CommandName": "Get-PnPTeamsChannelUser", + "Id": 760, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Rank": 1 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Id": 761, "CommandName": "Get-PnPTeamsChannelUser", + "Id": 761, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Id": 762, "CommandName": "Get-PnPTeamsChannelUser", + "Id": 762, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Rank": 3 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 763, "CommandName": "Get-PnPTeamsChannelUser", + "Id": 763, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Id": 764, "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 764, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Rank": 1 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Id": 765, "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 765, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Rank": 2 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Id": 766, "CommandName": "Get-PnPTeamsTab", + "Id": 766, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Rank": 1 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Id": 767, "CommandName": "Get-PnPTeamsTab", + "Id": 767, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Rank": 2 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "Id": 768, "CommandName": "Get-PnPTeamsTab", + "Id": 768, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "Rank": 3 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Id": 769, "CommandName": "Get-PnPTeamsTab", + "Id": 769, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Rank": 4 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Id": 770, "CommandName": "Get-PnPTeamsTab", + "Id": 770, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Rank": 5 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 771, "CommandName": "Get-PnPTeamsTag", + "Id": 771, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 772, "CommandName": "Get-PnPTeamsTag", + "Id": 772, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 2 }, { - "Command": "Get-PnPTeamsTeam", - "Id": 773, "CommandName": "Get-PnPTeamsTeam", + "Id": 773, + "Command": "Get-PnPTeamsTeam", "Rank": 1 }, { - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Id": 774, "CommandName": "Get-PnPTeamsTeam", + "Id": 774, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Rank": 2 }, { - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Id": 775, "CommandName": "Get-PnPTeamsTeam", + "Id": 775, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Rank": 3 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Id": 776, "CommandName": "Get-PnPTeamsTeam", + "Id": 776, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Rank": 4 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Id": 777, "CommandName": "Get-PnPTeamsTeam", + "Id": 777, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Rank": 5 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam", - "Id": 778, "CommandName": "Get-PnPTeamsUser", + "Id": 778, + "Command": "Get-PnPTeamsUser -Team MyTeam", "Rank": 1 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Id": 779, "CommandName": "Get-PnPTeamsUser", + "Id": 779, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Rank": 2 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Id": 780, "CommandName": "Get-PnPTeamsUser", + "Id": 780, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Rank": 3 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Id": 781, "CommandName": "Get-PnPTeamsUser", + "Id": 781, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Rank": 4 }, { - "Command": "Get-PnPTemporarilyDisableAppBar", - "Id": 782, "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Id": 782, + "Command": "Get-PnPTemporarilyDisableAppBar", "Rank": 1 }, { - "Command": "Get-PnPTenant", - "Id": 783, "CommandName": "Get-PnPTenant", + "Id": 783, + "Command": "Get-PnPTenant", "Rank": 1 }, { - "Command": "Get-PnPTenantAppCatalogUrl", - "Id": 784, "CommandName": "Get-PnPTenantAppCatalogUrl", + "Id": 784, + "Command": "Get-PnPTenantAppCatalogUrl", "Rank": 1 }, { - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Id": 785, "CommandName": "Get-PnPTenantCdnEnabled", + "Id": 785, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Rank": 1 }, { - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Id": 786, "CommandName": "Get-PnPTenantCdnOrigin", + "Id": 786, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Rank": 1 }, { - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Id": 787, "CommandName": "Get-PnPTenantCdnPolicies", + "Id": 787, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Rank": 1 }, { - "Command": "Get-PnPTenantDeletedSite", - "Id": 788, "CommandName": "Get-PnPTenantDeletedSite", + "Id": 788, + "Command": "Get-PnPTenantDeletedSite", "Rank": 1 }, { - "Command": "Get-PnPTenantDeletedSite -Detailed", - "Id": 789, "CommandName": "Get-PnPTenantDeletedSite", + "Id": 789, + "Command": "Get-PnPTenantDeletedSite -Detailed", "Rank": 2 }, { - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 790, "CommandName": "Get-PnPTenantDeletedSite", + "Id": 790, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 3 }, { - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Id": 791, "CommandName": "Get-PnPTenantDeletedSite", + "Id": 791, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Rank": 4 }, { - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Id": 792, "CommandName": "Get-PnPTenantDeletedSite", + "Id": 792, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Rank": 5 }, { - "Command": "Get-PnPTenantId", - "Id": 793, "CommandName": "Get-PnPTenantId", + "Id": 793, + "Command": "Get-PnPTenantId", "Rank": 1 }, { - "Command": "Get-PnPTenantId contoso", - "Id": 794, "CommandName": "Get-PnPTenantId", + "Id": 794, + "Command": "Get-PnPTenantId contoso", "Rank": 2 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Id": 795, "CommandName": "Get-PnPTenantId", + "Id": 795, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Rank": 3 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Id": 796, "CommandName": "Get-PnPTenantId", + "Id": 796, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Rank": 4 }, { - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Id": 797, "CommandName": "Get-PnPTenantInfo", + "Id": 797, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Rank": 1 }, { - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Id": 798, "CommandName": "Get-PnPTenantInfo", + "Id": 798, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Rank": 2 }, { - "Command": "Get-PnPTenantInfo", - "Id": 799, "CommandName": "Get-PnPTenantInfo", + "Id": 799, + "Command": "Get-PnPTenantInfo", "Rank": 3 }, { - "Command": "Get-PnPTenantInfo -CurrentTenant", - "Id": 800, "CommandName": "Get-PnPTenantInfo", + "Id": 800, + "Command": "Get-PnPTenantInfo -CurrentTenant", "Rank": 4 }, { - "Command": "Get-PnPTenantInstance", - "Id": 801, "CommandName": "Get-PnPTenantInstance", + "Id": 801, + "Command": "Get-PnPTenantInstance", "Rank": 1 }, { - "Command": "Get-PnPTenantRecycleBinItem", - "Id": 802, "CommandName": "Get-PnPTenantRecycleBinItem", + "Id": 802, + "Command": "Get-PnPTenantRecycleBinItem", "Rank": 1 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Id": 803, "CommandName": "Get-PnPTenantSequence", + "Id": 803, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Rank": 1 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Id": 804, "CommandName": "Get-PnPTenantSequence", + "Id": 804, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Rank": 2 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Id": 805, "CommandName": "Get-PnPTenantSequenceSite", + "Id": 805, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Rank": 1 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Id": 806, "CommandName": "Get-PnPTenantSequenceSite", + "Id": 806, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Rank": 2 }, { - "Command": "Get-PnPTenantSite", - "Id": 807, "CommandName": "Get-PnPTenantSite", + "Id": 807, + "Command": "Get-PnPTenantSite", "Rank": 1 }, { - "Command": "Get-PnPTenantSite -Detailed", - "Id": 808, "CommandName": "Get-PnPTenantSite", + "Id": 808, + "Command": "Get-PnPTenantSite -Detailed", "Rank": 2 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Id": 809, "CommandName": "Get-PnPTenantSite", + "Id": 809, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Rank": 3 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Id": 810, "CommandName": "Get-PnPTenantSite", + "Id": 810, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Rank": 4 }, { - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Id": 811, "CommandName": "Get-PnPTenantSite", + "Id": 811, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Rank": 5 }, { - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Id": 812, "CommandName": "Get-PnPTenantSite", + "Id": 812, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Rank": 6 }, { - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Id": 813, "CommandName": "Get-PnPTenantSite", + "Id": 813, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Rank": 7 }, { - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Id": 814, "CommandName": "Get-PnPTenantSite", + "Id": 814, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Rank": 8 }, { - "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Id": 815, "CommandName": "Get-PnPTenantSite", + "Id": 815, + "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Rank": 9 }, { - "Command": "Get-PnPTenantSyncClientRestriction", - "Id": 816, "CommandName": "Get-PnPTenantSyncClientRestriction", + "Id": 816, + "Command": "Get-PnPTenantSyncClientRestriction", "Rank": 1 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Id": 817, "CommandName": "Get-PnPTenantTemplate", + "Id": 817, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Rank": 1 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Id": 818, "CommandName": "Get-PnPTenantTemplate", + "Id": 818, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Rank": 2 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Id": 819, "CommandName": "Get-PnPTenantTemplate", + "Id": 819, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Rank": 3 }, { - "Command": "Get-PnPTenantTheme", - "Id": 820, "CommandName": "Get-PnPTenantTheme", + "Id": 820, + "Command": "Get-PnPTenantTheme", "Rank": 1 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 821, "CommandName": "Get-PnPTenantTheme", + "Id": 821, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 2 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Id": 822, "CommandName": "Get-PnPTenantTheme", + "Id": 822, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Rank": 3 }, { - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 823, "CommandName": "Get-PnPTerm", + "Id": 823, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 1 }, { - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 824, "CommandName": "Get-PnPTerm", + "Id": 824, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2 }, { - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 825, "CommandName": "Get-PnPTerm", + "Id": 825, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3 }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Id": 826, "CommandName": "Get-PnPTerm", + "Id": 826, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Rank": 4 }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Id": 827, "CommandName": "Get-PnPTerm", + "Id": 827, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Rank": 5 }, { - "Command": "Get-PnPTermGroup", - "Id": 828, "CommandName": "Get-PnPTermGroup", + "Id": 828, + "Command": "Get-PnPTermGroup", "Rank": 1 }, { - "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Id": 829, "CommandName": "Get-PnPTermGroup", + "Id": 829, + "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Rank": 2 }, { - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Id": 830, "CommandName": "Get-PnPTermGroup", + "Id": 830, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Rank": 3 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Id": 831, "CommandName": "Get-PnPTermLabel", + "Id": 831, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Rank": 1 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Id": 832, "CommandName": "Get-PnPTermLabel", + "Id": 832, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Rank": 2 }, { - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 833, "CommandName": "Get-PnPTermLabel", + "Id": 833, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3 }, { - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Id": 834, "CommandName": "Get-PnPTermSet", + "Id": 834, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Rank": 1 }, { - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Id": 835, "CommandName": "Get-PnPTermSet", + "Id": 835, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Rank": 2 }, { - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Id": 836, "CommandName": "Get-PnPTermSet", + "Id": 836, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Rank": 3 }, { - "Command": "Get-PnPTheme", - "Id": 837, "CommandName": "Get-PnPTheme", + "Id": 837, + "Command": "Get-PnPTheme", "Rank": 1 }, { - "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Id": 838, "CommandName": "Get-PnPTheme", + "Id": 838, + "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Rank": 2 }, { - "Command": "Get-PnPTimeZoneId", - "Id": 839, "CommandName": "Get-PnPTimeZoneId", + "Id": 839, + "Command": "Get-PnPTimeZoneId", "Rank": 1 }, { - "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Id": 840, "CommandName": "Get-PnPTimeZoneId", + "Id": 840, + "Command": "Get-PnPTimeZoneId -Match Stockholm", "Rank": 2 }, { - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Id": 841, "CommandName": "Get-PnPUnfurlLink", + "Id": 841, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Rank": 1 }, { - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Id": 842, "CommandName": "Get-PnPUnifiedAuditLog", + "Id": 842, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Rank": 1 }, { - "Command": "Get-PnPUPABulkImportStatus", - "Id": 843, "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 843, + "Command": "Get-PnPUPABulkImportStatus", "Rank": 1 }, { - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Id": 844, "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 844, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Rank": 2 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId <guid>", - "Id": 845, "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 845, + "Command": "Get-PnPUPABulkImportStatus -JobId <guid>", "Rank": 3 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails", - "Id": 846, "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 846, + "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails", "Rank": 4 }, { - "Command": "Get-PnPUser", - "Id": 847, "CommandName": "Get-PnPUser", + "Id": 847, + "Command": "Get-PnPUser", "Rank": 1 }, { - "Command": "Get-PnPUser -Identity 23", - "Id": 848, "CommandName": "Get-PnPUser", + "Id": 848, + "Command": "Get-PnPUser -Identity 23", "Rank": 2 }, { - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Id": 849, "CommandName": "Get-PnPUser", + "Id": 849, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Rank": 3 }, { - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Id": 850, "CommandName": "Get-PnPUser", + "Id": 850, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Rank": 4 }, { - "Command": "Get-PnPUser -WithRightsAssigned", - "Id": 851, "CommandName": "Get-PnPUser", + "Id": 851, + "Command": "Get-PnPUser -WithRightsAssigned", "Rank": 5 }, { - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Id": 852, "CommandName": "Get-PnPUser", + "Id": 852, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Rank": 6 }, { - "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Id": 853, "CommandName": "Get-PnPUser", + "Id": 853, + "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Rank": 7 }, { - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Id": 854, "CommandName": "Get-PnPUserOneDriveQuota", + "Id": 854, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Rank": 1 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Id": 855, "CommandName": "Get-PnPUserProfileProperty", + "Id": 855, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Rank": 1 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Id": 856, "CommandName": "Get-PnPUserProfileProperty", + "Id": 856, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Rank": 2 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Id": 857, "CommandName": "Get-PnPUserProfileProperty", + "Id": 857, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Rank": 3 }, { - "Command": "Get-PnPView -List \"Demo List\"", - "Id": 858, "CommandName": "Get-PnPView", + "Id": 858, + "Command": "Get-PnPView -List \"Demo List\"", "Rank": 1 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Id": 859, "CommandName": "Get-PnPView", + "Id": 859, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Rank": 2 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Id": 860, "CommandName": "Get-PnPView", + "Id": 860, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Rank": 3 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE", - "Id": 861, "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 861, + "Command": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 862, "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 862, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 2 }, { - "Command": "Get-PnPWeb", - "Id": 863, "CommandName": "Get-PnPWeb", + "Id": 863, + "Command": "Get-PnPWeb", "Rank": 1 }, { - "Command": "Get-PnPWebHeader", - "Id": 864, "CommandName": "Get-PnPWebHeader", + "Id": 864, + "Command": "Get-PnPWebHeader", "Rank": 1 }, { - "Command": "Get-PnPWebhookSubscription -List MyList", - "Id": 865, "CommandName": "Get-PnPWebhookSubscription", + "Id": 865, + "Command": "Get-PnPWebhookSubscription -List MyList", "Rank": 1 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Id": 866, "CommandName": "Get-PnPWebPart", + "Id": 866, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Rank": 1 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 867, "CommandName": "Get-PnPWebPart", + "Id": 867, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2 }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Id": 868, "CommandName": "Get-PnPWebPartProperty", + "Id": 868, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Rank": 1 }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Id": 869, "CommandName": "Get-PnPWebPartProperty", + "Id": 869, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Rank": 2 }, { - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 870, "CommandName": "Get-PnPWebPartXml", + "Id": 870, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1 }, { - "Command": "Get-PnPWebPermission -Identity (Get-PnPWeb) -PrincipalId 60", - "Id": 871, "CommandName": "Get-PnPWebPermission", + "Id": 871, + "Command": "Get-PnPWebPermission -Identity (Get-PnPWeb) -PrincipalId 60", "Rank": 1 }, { - "Command": "Get-PnPWebPermission -Identity \"subsite\" -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Id": 872, "CommandName": "Get-PnPWebPermission", + "Id": 872, + "Command": "Get-PnPWebPermission -Identity \"subsite\" -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2 }, { - "Command": "Get-PnPWebTemplates", - "Id": 873, "CommandName": "Get-PnPWebTemplates", + "Id": 873, + "Command": "Get-PnPWebTemplates", "Rank": 1 }, { - "Command": "Get-PnPWebTemplates -LCID 1033", - "Id": 874, "CommandName": "Get-PnPWebTemplates", + "Id": 874, + "Command": "Get-PnPWebTemplates -LCID 1033", "Rank": 2 }, { - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Id": 875, "CommandName": "Get-PnPWebTemplates", + "Id": 875, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Rank": 3 }, { - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Id": 876, "CommandName": "Get-PnPWikiPageContent", + "Id": 876, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Rank": 1 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Id": 877, "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 877, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Rank": 1 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", - "Id": 878, "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 878, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2 }, { - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 879, "CommandName": "Grant-PnPHubSiteRights", + "Id": 879, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1 }, { - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 880, "CommandName": "Grant-PnPSiteDesignRights", + "Id": 880, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1 }, { - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 881, "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Id": 881, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Id": 882, "CommandName": "Import-PnPTaxonomy", + "Id": 882, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Rank": 1 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Id": 883, "CommandName": "Import-PnPTaxonomy", + "Id": 883, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Rank": 2 }, { - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Id": 884, "CommandName": "Import-PnPTaxonomy", + "Id": 884, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Rank": 3 }, { - "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Id": 885, "CommandName": "Import-PnPTermGroupFromXml", + "Id": 885, + "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Rank": 1 }, { - "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Id": 886, "CommandName": "Import-PnPTermGroupFromXml", + "Id": 886, + "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Rank": 2 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Id": 887, "CommandName": "Import-PnPTermSet", + "Id": 887, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Rank": 1 }, { - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", - "Id": 888, "CommandName": "Import-PnPTermSet", + "Id": 888, + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", "Rank": 2 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", - "Id": 889, "CommandName": "Import-PnPTermSet", + "Id": 889, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "Rank": 3 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 890, "CommandName": "Install-PnPApp", + "Id": 890, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 891, "CommandName": "Install-PnPApp", + "Id": 891, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Id": 892, "CommandName": "Invoke-PnPGraphMethod", + "Id": 892, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Rank": 1 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Id": 893, "CommandName": "Invoke-PnPGraphMethod", + "Id": 893, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Rank": 2 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Id": 894, "CommandName": "Invoke-PnPGraphMethod", + "Id": 894, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Rank": 3 }, { - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Id": 895, "CommandName": "Invoke-PnPGraphMethod", + "Id": 895, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Rank": 4 }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Id": 896, "CommandName": "Invoke-PnPGraphMethod", + "Id": 896, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Rank": 5 }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "Id": 897, "CommandName": "Invoke-PnPGraphMethod", + "Id": 897, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", "Rank": 6 }, { - "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": 898, "CommandName": "Invoke-PnPGraphMethod", + "Id": 898, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"", "Rank": 7 }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 899, "CommandName": "Invoke-PnPListDesign", + "Id": 899, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1 }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 900, "CommandName": "Invoke-PnPListDesign", + "Id": 900, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2 }, { - "Command": "Invoke-PnPQuery -RetryCount 5", - "Id": 901, "CommandName": "Invoke-PnPQuery", + "Id": 901, + "Command": "Invoke-PnPQuery -RetryCount 5", "Rank": 1 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 902, "CommandName": "Invoke-PnPSiteDesign", + "Id": 902, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 903, "CommandName": "Invoke-PnPSiteDesign", + "Id": 903, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2 }, { - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Id": 904, "CommandName": "Invoke-PnPSiteScript", + "Id": 904, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Rank": 1 }, { - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", - "Id": 905, "CommandName": "Invoke-PnPSiteSwap", + "Id": 905, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", "Rank": 1 }, { - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", - "Id": 906, "CommandName": "Invoke-PnPSiteSwap", + "Id": 906, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", "Rank": 2 }, { - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", - "Id": 907, "CommandName": "Invoke-PnPSiteSwap", + "Id": 907, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", "Rank": 3 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Id": 908, "CommandName": "Invoke-PnPSiteTemplate", + "Id": 908, + "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Rank": 1 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Id": 909, "CommandName": "Invoke-PnPSiteTemplate", + "Id": 909, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Rank": 2 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 910, "CommandName": "Invoke-PnPSiteTemplate", + "Id": 910, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Id": 911, "CommandName": "Invoke-PnPSiteTemplate", + "Id": 911, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Rank": 4 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Id": 912, "CommandName": "Invoke-PnPSiteTemplate", + "Id": 912, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Rank": 5 }, { - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Id": 913, "CommandName": "Invoke-PnPSiteTemplate", + "Id": 913, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Rank": 6 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Id": 914, "CommandName": "Invoke-PnPSiteTemplate", + "Id": 914, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Rank": 7 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Id": 915, "CommandName": "Invoke-PnPSiteTemplate", + "Id": 915, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Rank": 8 }, { - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Id": 916, "CommandName": "Invoke-PnPSPRestMethod", + "Id": 916, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Rank": 1 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Id": 917, "CommandName": "Invoke-PnPTenantTemplate", + "Id": 917, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Rank": 1 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Id": 918, "CommandName": "Invoke-PnPTenantTemplate", + "Id": 918, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Rank": 2 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 919, "CommandName": "Invoke-PnPTenantTemplate", + "Id": 919, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3 }, { - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Id": 920, "CommandName": "Invoke-PnPWebAction", + "Id": 920, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Rank": 1 }, { - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Id": 921, "CommandName": "Invoke-PnPWebAction", + "Id": 921, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Rank": 2 }, { - "Command": "Measure-PnPList \"Documents\"", - "Id": 922, "CommandName": "Measure-PnPList", + "Id": 922, + "Command": "Measure-PnPList \"Documents\"", "Rank": 1 }, { - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Id": 923, "CommandName": "Measure-PnPList", + "Id": 923, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Rank": 2 }, { - "Command": "Measure-PnPWeb", - "Id": 924, "CommandName": "Measure-PnPWeb", + "Id": 924, + "Command": "Measure-PnPWeb", "Rank": 1 }, { - "Command": "Measure-PnPWeb $web -Recursive", - "Id": 925, "CommandName": "Measure-PnPWeb", + "Id": 925, + "Command": "Measure-PnPWeb $web -Recursive", "Rank": 2 }, { - "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", - "Id": 926, "CommandName": "Merge-PnPTerm", + "Id": 926, + "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", "Rank": 1 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Id": 927, "CommandName": "Move-PnPFile", + "Id": 927, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Rank": 1 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Id": 928, "CommandName": "Move-PnPFile", + "Id": 928, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Rank": 2 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 929, "CommandName": "Move-PnPFile", + "Id": 929, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 3 }, { - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 930, "CommandName": "Move-PnPFile", + "Id": 930, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 4 }, { - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Id": 931, "CommandName": "Move-PnPFolder", + "Id": 931, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Rank": 1 }, { - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Id": 932, "CommandName": "Move-PnPFolder", + "Id": 932, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Rank": 2 }, { - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Id": 933, "CommandName": "Move-PnPListItemToRecycleBin", + "Id": 933, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Id": 934, "CommandName": "Move-PnPPageComponent", + "Id": 934, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Rank": 1 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Id": 935, "CommandName": "Move-PnPPageComponent", + "Id": 935, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Rank": 2 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Id": 936, "CommandName": "Move-PnPPageComponent", + "Id": 936, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Rank": 3 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Id": 937, "CommandName": "Move-PnPPageComponent", + "Id": 937, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Rank": 4 }, { - "Command": "Move-PnPRecycleBinItem", - "Id": 938, "CommandName": "Move-PnpRecycleBinItem", + "Id": 938, + "Command": "Move-PnPRecycleBinItem", "Rank": 1 }, { - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Id": 939, "CommandName": "Move-PnpRecycleBinItem", + "Id": 939, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Rank": 2 }, { - "Command": "Move-PnPRecycleBinItem -Force", - "Id": 940, "CommandName": "Move-PnpRecycleBinItem", + "Id": 940, + "Command": "Move-PnPRecycleBinItem -Force", "Rank": 3 }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", - "Id": 941, "CommandName": "Move-PnPTerm", + "Id": 941, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", "Rank": 1 }, { - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Id": 942, "CommandName": "Move-PnPTerm", + "Id": 942, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Rank": 2 }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Id": 943, "CommandName": "Move-PnPTerm", + "Id": 943, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Rank": 3 }, { - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", - "Id": 944, "CommandName": "Move-PnPTermSet", + "Id": 944, + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", "Rank": 1 }, { - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Id": 945, "CommandName": "Move-PnPTermSet", + "Id": 945, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Rank": 2 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 946, "CommandName": "New-PnPAzureADGroup", + "Id": 946, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Id": 947, "CommandName": "New-PnPAzureADGroup", + "Id": 947, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Rank": 2 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Id": 948, "CommandName": "New-PnPAzureADGroup", + "Id": 948, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Rank": 3 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Id": 949, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 949, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Rank": 1 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Id": 950, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 950, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Rank": 2 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Id": 951, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 951, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Rank": 3 }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Id": 952, "CommandName": "New-PnPAzureCertificate", + "Id": 952, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Rank": 1 }, { - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Id": 953, "CommandName": "New-PnPAzureCertificate", + "Id": 953, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Rank": 2 }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Id": 954, "CommandName": "New-PnPAzureCertificate", + "Id": 954, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Rank": 3 }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", - "Id": 955, "CommandName": "New-PnPAzureCertificate", + "Id": 955, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", "Rank": 4 }, { - "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"", - "Id": 956, "CommandName": "New-PnPContainerType", + "Id": 956, + "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"", "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()", - "Id": 957, "CommandName": "New-PnPGraphSubscription", + "Id": 957, + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", "Rank": 1 }, { - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "Id": 958, "CommandName": "New-PnPGraphSubscription", + "Id": 958, + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "Rank": 2 }, { - "Command": "New-PnPGroup -Title \"My Site Users\"", - "Id": 959, "CommandName": "New-PnPGroup", + "Id": 959, + "Command": "New-PnPGroup -Title \"My Site Users\"", "Rank": 1 }, { - "Command": "New-PnPList -Title Announcements -Template Announcements", - "Id": 960, "CommandName": "New-PnPList", + "Id": 960, + "Command": "New-PnPList -Title Announcements -Template Announcements", "Rank": 1 }, { - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Id": 961, "CommandName": "New-PnPList", + "Id": 961, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Rank": 2 }, { - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Id": 962, "CommandName": "New-PnPList", + "Id": 962, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Rank": 3 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 963, "CommandName": "New-PnPMicrosoft365Group", + "Id": 963, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Id": 964, "CommandName": "New-PnPMicrosoft365Group", + "Id": 964, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Rank": 2 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Id": 965, "CommandName": "New-PnPMicrosoft365Group", + "Id": 965, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Rank": 3 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Id": 966, "CommandName": "New-PnPMicrosoft365Group", + "Id": 966, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Rank": 4 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 967, "CommandName": "New-PnPMicrosoft365Group", + "Id": 967, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 5 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 968, "CommandName": "New-PnPMicrosoft365Group", + "Id": 968, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "Id": 969, "CommandName": "New-PnPMicrosoft365Group", + "Id": 969, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Rank": 7 }, { - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", - "Id": 970, "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 970, + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "Rank": 1 }, { - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Id": 971, "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 971, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Rank": 2 }, { - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Id": 972, "CommandName": "New-PnPPersonalSite", + "Id": 972, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Rank": 1 }, { - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Id": 973, "CommandName": "New-PnPPlannerPlan", + "Id": 973, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Rank": 1 }, { - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Id": 974, "CommandName": "New-PnPSdnProvider", + "Id": 974, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Rank": 1 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 975, "CommandName": "New-PnPSite", + "Id": 975, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 1 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Id": 976, "CommandName": "New-PnPSite", + "Id": 976, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Rank": 2 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 977, "CommandName": "New-PnPSite", + "Id": 977, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Rank": 3 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 978, "CommandName": "New-PnPSite", + "Id": 978, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 4 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 979, "CommandName": "New-PnPSite", + "Id": 979, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 5 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 980, "CommandName": "New-PnPSite", + "Id": 980, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 6 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Id": 981, "CommandName": "New-PnPSite", + "Id": 981, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Rank": 7 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Id": 982, "CommandName": "New-PnPSite", + "Id": 982, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Rank": 8 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Id": 983, "CommandName": "New-PnPSite", + "Id": 983, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Rank": 9 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Id": 984, "CommandName": "New-PnPSite", + "Id": 984, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Rank": 10 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 985, "CommandName": "New-PnPSite", + "Id": 985, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 11 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 986, "CommandName": "New-PnPSite", + "Id": 986, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Rank": 12 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 987, "CommandName": "New-PnPSite", + "Id": 987, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 13 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 988, "CommandName": "New-PnPSite", + "Id": 988, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 14 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 989, "CommandName": "New-PnPSite", + "Id": 989, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 15 }, { - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Id": 990, "CommandName": "New-PnPSite", + "Id": 990, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Rank": 16 }, { - "Command": "New-PnPSiteCollectionTermStore", - "Id": 991, "CommandName": "New-PnPSiteCollectionTermStore", + "Id": 991, + "Command": "New-PnPSiteCollectionTermStore", "Rank": 1 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Id": 992, "CommandName": "New-PnPSiteGroup", + "Id": 992, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Rank": 1 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Id": 993, "CommandName": "New-PnPSiteGroup", + "Id": 993, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Rank": 2 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Id": 994, "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 994, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Rank": 1 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Id": 995, "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 995, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Rank": 2 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Id": 996, "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 996, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Rank": 3 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Id": 997, "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 997, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Rank": 4 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Id": 998, "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 998, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Rank": 5 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 999, "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 999, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 6 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Id": 1000, "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 1000, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Rank": 7 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Id": 1001, "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 1001, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Rank": 8 }, { - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Id": 1002, "CommandName": "New-PnPTeamsApp", + "Id": 1002, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Rank": 1 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Id": 1003, "CommandName": "New-PnPTeamsTeam", + "Id": 1003, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Rank": 1 }, { - "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Id": 1004, "CommandName": "New-PnPTeamsTeam", + "Id": 1004, + "Command": "New-PnPTeamsTeam -GroupId $groupId", "Rank": 2 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Id": 1005, "CommandName": "New-PnPTeamsTeam", + "Id": 1005, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Rank": 3 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 1006, "CommandName": "New-PnPTeamsTeam", + "Id": 1006, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 4 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", - "Id": 1007, "CommandName": "New-PnPTeamsTeam", + "Id": 1007, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", "Rank": 5 }, { - "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": 1008, "CommandName": "New-PnPTeamsTeam", + "Id": 1008, + "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\"", "Rank": 6 }, { - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", - "Id": 1009, "CommandName": "New-PnPTenantSite", + "Id": 1009, + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 1 }, { - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Id": 1010, "CommandName": "New-PnPTenantSite", + "Id": 1010, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 2 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Id": 1011, "CommandName": "New-PnPTerm", + "Id": 1011, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Rank": 1 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1012, "CommandName": "New-PnPTerm", + "Id": 1012, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2 }, { - "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Id": 1013, "CommandName": "New-PnPTermGroup", + "Id": 1013, + "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Rank": 1 }, { - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Id": 1014, "CommandName": "New-PnPTermLabel", + "Id": 1014, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Rank": 1 }, { - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Id": 1015, "CommandName": "New-PnPTermSet", + "Id": 1015, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Rank": 1 }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Id": 1016, "CommandName": "New-PnPUPABulkImportJob", + "Id": 1016, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Rank": 1 }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", - "Id": 1017, "CommandName": "New-PnPUPABulkImportJob", + "Id": 1017, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", "Rank": 2 }, { - "Command": "New-PnPUser -LoginName user@company.com", - "Id": 1018, "CommandName": "New-PnPUser", + "Id": 1018, + "Command": "New-PnPUser -LoginName user@company.com", "Rank": 1 }, { - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Id": 1019, "CommandName": "New-PnPWeb", + "Id": 1019, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Rank": 1 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 1020, "CommandName": "Publish-PnPApp", + "Id": 1020, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 1 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Id": 1021, "CommandName": "Publish-PnPApp", + "Id": 1021, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Rank": 2 }, { - "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": 1022, "CommandName": "Publish-PnPCompanyApp", + "Id": 1022, + "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", "Rank": 1 }, { - "Command": "Publish-PnPContentType -ContentType 0x0101", - "Id": 1023, "CommandName": "Publish-PnPContentType", + "Id": 1023, + "Command": "Publish-PnPContentType -ContentType 0x0101", "Rank": 1 }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 1024, "CommandName": "Publish-PnPSyntexModel", + "Id": 1024, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1 }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", - "Id": 1025, "CommandName": "Publish-PnPSyntexModel", + "Id": 1025, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", "Rank": 2 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Id": 1026, "CommandName": "Read-PnPSiteTemplate", + "Id": 1026, + "Command": "Read-PnPSiteTemplate -Path template.pnp", "Rank": 1 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Id": 1027, "CommandName": "Read-PnPSiteTemplate", + "Id": 1027, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Rank": 2 }, { - "Command": "Read-PnPSiteTemplate -Xml $xml", - "Id": 1028, "CommandName": "Read-PnPSiteTemplate", + "Id": 1028, + "Command": "Read-PnPSiteTemplate -Xml $xml", "Rank": 3 }, { - "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Id": 1029, "CommandName": "Read-PnPTenantTemplate", + "Id": 1029, + "Command": "Read-PnPTenantTemplate -Path template.pnp", "Rank": 1 }, { - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Id": 1030, "CommandName": "Register-PnPAppCatalogSite", + "Id": 1030, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Rank": 1 }, { - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", - "Id": 1031, "CommandName": "Register-PnPAzureADApp", + "Id": 1031, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", "Rank": 1 }, { - "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": 1032, "CommandName": "Register-PnPAzureADApp", + "Id": 1032, + "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\")", "Rank": 2 }, { - "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": 1033, "CommandName": "Register-PnPAzureADApp", + "Id": 1033, + "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\")", "Rank": 3 }, { - "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": 1034, "CommandName": "Register-PnPAzureADApp", + "Id": 1034, + "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\")", "Rank": 4 }, { - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Id": 1035, "CommandName": "Register-PnPAzureADApp", + "Id": 1035, + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Rank": 5 }, { - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Id": 1036, "CommandName": "Register-PnPAzureADApp", + "Id": 1036, + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Rank": 6 }, { - "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": 1037, "CommandName": "Register-PnPAzureADApp", + "Id": 1037, + "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", "Rank": 7 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1038, "CommandName": "Register-PnPHubSite", + "Id": 1038, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Id": 1039, "CommandName": "Register-PnPHubSite", + "Id": 1039, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Rank": 2 }, { - "Command": "Register-PnPManagementShellAccess", - "Id": 1040, "CommandName": "Register-PnPManagementShellAccess", + "Id": 1040, + "Command": "Register-PnPManagementShellAccess", "Rank": 1 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Id": 1041, "CommandName": "Register-PnPManagementShellAccess", + "Id": 1041, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Rank": 2 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Id": 1042, "CommandName": "Register-PnPManagementShellAccess", + "Id": 1042, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Rank": 3 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Id": 1043, "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1043, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Rank": 1 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Id": 1044, "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1044, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Rank": 2 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Id": 1045, "CommandName": "Remove-PnPAlert", + "Id": 1045, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Rank": 1 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 1046, "CommandName": "Remove-PnPAlert", + "Id": 1046, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 2 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1047, "CommandName": "Remove-PnPApp", + "Id": 1047, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1048, "CommandName": "Remove-PnPApp", + "Id": 1048, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2 }, { - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1049, "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1049, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1 }, { - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1050, "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1050, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Id": 1051, "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1051, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Rank": 1 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1052, "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1052, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 2 }, { - "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Id": 1053, "CommandName": "Remove-PnPAzureADApp", + "Id": 1053, + "Command": "Remove-PnPAzureADApp -Identity MyApp", "Rank": 1 }, { - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 1054, "CommandName": "Remove-PnPAzureADApp", + "Id": 1054, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 2 }, { - "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Id": 1055, "CommandName": "Remove-PnPAzureADGroup", + "Id": 1055, + "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Rank": 1 }, { - "Command": "Remove-PnPAzureADGroup -Identity $group", - "Id": 1056, "CommandName": "Remove-PnPAzureADGroup", + "Id": 1056, + "Command": "Remove-PnPAzureADGroup -Identity $group", "Rank": 2 }, { - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1057, "CommandName": "Remove-PnPAzureADGroupMember", + "Id": 1057, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1058, "CommandName": "Remove-PnPAzureADGroupOwner", + "Id": 1058, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Id": 1059, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1059, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Rank": 1 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Id": 1060, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1060, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Rank": 2 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 1061, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1061, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 3 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 1062, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1062, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 4 }, { - "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", - "Id": 1063, "CommandName": "Remove-PnPContainer", + "Id": 1063, + "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "Rank": 1 }, { - "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", - "Id": 1064, "CommandName": "Remove-PnPContainer", + "Id": 1064, + "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", "Rank": 2 }, { - "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6", - "Id": 1065, "CommandName": "Remove-PnPContainerType", + "Id": 1065, + "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6", "Rank": 1 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Id": 1066, "CommandName": "Remove-PnPContentType", + "Id": 1066, + "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Rank": 1 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Id": 1067, "CommandName": "Remove-PnPContentType", + "Id": 1067, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Rank": 2 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 1068, "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1068, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 1069, "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1069, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2 }, { - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Id": 1070, "CommandName": "Remove-PnPContentTypeFromList", + "Id": 1070, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Rank": 1 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1071, "CommandName": "Remove-PnPCustomAction", + "Id": 1071, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1072, "CommandName": "Remove-PnPCustomAction", + "Id": 1072, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Id": 1073, "CommandName": "Remove-PnPCustomAction", + "Id": 1073, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Rank": 3 }, { - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1074, "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Id": 1074, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1 }, { - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1075, "CommandName": "Remove-PnPEventReceiver", + "Id": 1075, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 1 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1076, "CommandName": "Remove-PnPEventReceiver", + "Id": 1076, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Id": 1077, "CommandName": "Remove-PnPEventReceiver", + "Id": 1077, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Rank": 3 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList", - "Id": 1078, "CommandName": "Remove-PnPEventReceiver", + "Id": 1078, + "Command": "Remove-PnPEventReceiver -List ProjectList", "Rank": 4 }, { - "Command": "Remove-PnPEventReceiver", - "Id": 1079, "CommandName": "Remove-PnPEventReceiver", + "Id": 1079, + "Command": "Remove-PnPEventReceiver", "Rank": 5 }, { - "Command": "Remove-PnPEventReceiver -Scope Site", - "Id": 1080, "CommandName": "Remove-PnPEventReceiver", + "Id": 1080, + "Command": "Remove-PnPEventReceiver -Scope Site", "Rank": 6 }, { - "Command": "Remove-PnPEventReceiver -Scope Web", - "Id": 1081, "CommandName": "Remove-PnPEventReceiver", + "Id": 1081, + "Command": "Remove-PnPEventReceiver -Scope Web", "Rank": 7 }, { - "Command": "Remove-PnPEventReceiver -Scope All", - "Id": 1082, "CommandName": "Remove-PnPEventReceiver", + "Id": 1082, + "Command": "Remove-PnPEventReceiver -Scope All", "Rank": 8 }, { - "Command": "Remove-PnPField -Identity \"Speakers\"", - "Id": 1083, "CommandName": "Remove-PnPField", + "Id": 1083, + "Command": "Remove-PnPField -Identity \"Speakers\"", "Rank": 1 }, { - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 1084, "CommandName": "Remove-PnPField", + "Id": 1084, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 1085, "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1085, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Id": 1086, "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1086, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Rank": 2 }, { - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Id": 1087, "CommandName": "Remove-PnPFile", + "Id": 1087, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Rank": 1 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Id": 1088, "CommandName": "Remove-PnPFile", + "Id": 1088, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Rank": 2 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Id": 1089, "CommandName": "Remove-PnPFile", + "Id": 1089, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Rank": 3 }, { - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Id": 1090, "CommandName": "Remove-PnPFileFromSiteTemplate", + "Id": 1090, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Rank": 1 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 1091, "CommandName": "Remove-PnPFileSharingLink", + "Id": 1091, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Id": 1092, "CommandName": "Remove-PnPFileSharingLink", + "Id": 1092, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Rank": 2 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1093, "CommandName": "Remove-PnPFileVersion", + "Id": 1093, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1094, "CommandName": "Remove-PnPFileVersion", + "Id": 1094, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 2 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Id": 1095, "CommandName": "Remove-PnPFileVersion", + "Id": 1095, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Rank": 3 }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "Id": 1096, "CommandName": "Remove-PnPFlowOwner", + "Id": 1096, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Rank": 1 }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "Id": 1097, "CommandName": "Remove-PnPFlowOwner", + "Id": 1097, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Rank": 2 }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "Id": 1098, "CommandName": "Remove-PnPFlowOwner", + "Id": 1098, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "Rank": 3 }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "Id": 1099, "CommandName": "Remove-PnPFlowOwner", + "Id": 1099, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Rank": 4 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 1100, "CommandName": "Remove-PnPFolder", + "Id": 1100, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Id": 1101, "CommandName": "Remove-PnPFolder", + "Id": 1101, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Rank": 2 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 1102, "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1102, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Id": 1103, "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1103, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Rank": 2 }, { - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Id": 1104, "CommandName": "Remove-PnPGraphSubscription", + "Id": 1104, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Rank": 1 }, { - "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Id": 1105, "CommandName": "Remove-PnPGroup", + "Id": 1105, + "Command": "Remove-PnPGroup -Identity \"My Users\"", "Rank": 1 }, { - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 1106, "CommandName": "Remove-PnPGroupMember", + "Id": 1106, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1 }, { - "Command": "Remove-PnPHomeSite", - "Id": 1107, "CommandName": "Remove-PnPHomeSite", + "Id": 1107, + "Command": "Remove-PnPHomeSite", "Rank": 1 }, { - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1108, "CommandName": "Remove-PnPHubSiteAssociation", + "Id": 1108, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Id": 1109, "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1109, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Rank": 1 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Id": 1110, "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1110, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Rank": 2 }, { - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Id": 1111, "CommandName": "Remove-PnPIndexedProperty", + "Id": 1111, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Rank": 1 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Id": 1112, "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1112, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Rank": 1 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Id": 1113, "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1113, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Rank": 2 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Id": 1114, "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1114, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Rank": 3 }, { - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Id": 1115, "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1115, + "Command": "Remove-PnPJavaScriptLink -Scope Site", "Rank": 4 }, { - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Id": 1116, "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1116, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Rank": 5 }, { - "Command": "Remove-PnPKnowledgeHubSite", - "Id": 1117, "CommandName": "Remove-PnPKnowledgeHubSite", + "Id": 1117, + "Command": "Remove-PnPKnowledgeHubSite", "Rank": 1 }, { - "Command": "Remove-PnPList -Identity Announcements", - "Id": 1118, "CommandName": "Remove-PnPList", + "Id": 1118, + "Command": "Remove-PnPList -Identity Announcements", "Rank": 1 }, { - "Command": "Remove-PnPList -Identity Announcements -Force", - "Id": 1119, "CommandName": "Remove-PnPList", + "Id": 1119, + "Command": "Remove-PnPList -Identity Announcements -Force", "Rank": 2 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Id": 1120, "CommandName": "Remove-PnPList", + "Id": 1120, + "Command": "Remove-PnPList -Identity Announcements -Recycle", "Rank": 3 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Id": 1121, "CommandName": "Remove-PnPList", + "Id": 1121, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Rank": 4 }, { - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1122, "CommandName": "Remove-PnPListDesign", + "Id": 1122, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Id": 1123, "CommandName": "Remove-PnPListItem", + "Id": 1123, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Id": 1124, "CommandName": "Remove-PnPListItem", + "Id": 1124, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Rank": 2 }, { - "Command": "Remove-PnPListItem -List \"Demo List\"", - "Id": 1125, "CommandName": "Remove-PnPListItem", + "Id": 1125, + "Command": "Remove-PnPListItem -List \"Demo List\"", "Rank": 3 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Id": 1126, "CommandName": "Remove-PnPListItemAttachment", + "Id": 1126, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Rank": 1 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Id": 1127, "CommandName": "Remove-PnPListItemAttachment", + "Id": 1127, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Rank": 2 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Id": 1128, "CommandName": "Remove-PnPListItemAttachment", + "Id": 1128, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Rank": 3 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Id": 1129, "CommandName": "Remove-PnPListItemAttachment", + "Id": 1129, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Rank": 4 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Id": 1130, "CommandName": "Remove-PnPListItemAttachment", + "Id": 1130, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Rank": 5 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1131, "CommandName": "Remove-PnPListItemVersion", + "Id": 1131, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1132, "CommandName": "Remove-PnPListItemVersion", + "Id": 1132, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Id": 1133, "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1133, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Id": 1134, "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1134, + "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Rank": 2 }, { - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1135, "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Id": 1135, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1136, "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Id": 1136, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", - "Id": 1137, "CommandName": "Remove-PnPMicrosoft365GroupPhoto", + "Id": 1137, + "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Id": 1138, "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1138, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Id": 1139, "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1139, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Rank": 2 }, { - "Command": "Remove-PnPNavigationNode -Identity 1032", - "Id": 1140, "CommandName": "Remove-PnPNavigationNode", + "Id": 1140, + "Command": "Remove-PnPNavigationNode -Identity 1032", "Rank": 1 }, { - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Id": 1141, "CommandName": "Remove-PnPNavigationNode", + "Id": 1141, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Rank": 2 }, { - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Id": 1142, "CommandName": "Remove-PnPNavigationNode", + "Id": 1142, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Rank": 3 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Id": 1143, "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1143, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Rank": 1 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Id": 1144, "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1144, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Rank": 2 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Id": 1145, "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1145, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Rank": 3 }, { - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1146, "CommandName": "Remove-PnPOrgNewsSite", + "Id": 1146, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Id": 1147, "CommandName": "Remove-PnPPage", + "Id": 1147, + "Command": "Remove-PnPPage -Identity \"MyPage\"", "Rank": 1 }, { - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Id": 1148, "CommandName": "Remove-PnPPage", + "Id": 1148, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Rank": 2 }, { - "Command": "Remove-PnPPage $page", - "Id": 1149, "CommandName": "Remove-PnPPage", + "Id": 1149, + "Command": "Remove-PnPPage $page", "Rank": 3 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Id": 1150, "CommandName": "Remove-PnPPage", + "Id": 1150, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Rank": 4 }, { - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1151, "CommandName": "Remove-PnPPageComponent", + "Id": 1151, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1 }, { - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Id": 1152, "CommandName": "Remove-PnPPlannerBucket", + "Id": 1152, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Rank": 1 }, { - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Id": 1153, "CommandName": "Remove-PnPPlannerPlan", + "Id": 1153, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Rank": 1 }, { - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 1154, "CommandName": "Remove-PnPPlannerRoster", + "Id": 1154, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1 }, { - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1155, "CommandName": "Remove-PnPPlannerRosterMember", + "Id": 1155, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Id": 1156, "CommandName": "Remove-PnPPlannerTask", + "Id": 1156, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Rank": 1 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Id": 1157, "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1157, + "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Rank": 1 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Id": 1158, "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1158, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Rank": 2 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Id": 1159, "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1159, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Rank": 3 }, { - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 1160, "CommandName": "Remove-PnPPublishingImageRendition", + "Id": 1160, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1 }, { - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Id": 1161, "CommandName": "Remove-PnPRoleDefinition", + "Id": 1161, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Rank": 1 }, { - "Command": "Remove-PnPSdnProvider -Confirm:false", - "Id": 1162, "CommandName": "Remove-PnPSdnProvider", + "Id": 1162, + "Command": "Remove-PnPSdnProvider -Confirm:false", "Rank": 1 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Id": 1163, "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1163, + "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Rank": 1 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1164, "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1164, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1165, "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1165, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3 }, { - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1166, "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1166, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1167, "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1167, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1168, "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1168, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2 }, { - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 1169, "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Id": 1169, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 1 }, { - "Command": "Remove-PnPSiteCollectionTermStore", - "Id": 1170, "CommandName": "Remove-PnPSiteCollectionTermStore", + "Id": 1170, + "Command": "Remove-PnPSiteCollectionTermStore", "Rank": 1 }, { - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1171, "CommandName": "Remove-PnPSiteDesign", + "Id": 1171, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1 }, { - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1172, "CommandName": "Remove-PnPSiteDesignTask", + "Id": 1172, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1173, "CommandName": "Remove-PnPSiteGroup", + "Id": 1173, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Id": 1174, "CommandName": "Remove-PnPSiteGroup", + "Id": 1174, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Rank": 2 }, { - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1175, "CommandName": "Remove-PnPSiteScript", + "Id": 1175, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1 }, { - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 1176, "CommandName": "Remove-PnPSiteUserInvitations", + "Id": 1176, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey", - "Id": 1177, "CommandName": "Remove-PnPStorageEntity", + "Id": 1177, + "Command": "Remove-PnPStorageEntity -Key MyKey", "Rank": 1 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 1178, "CommandName": "Remove-PnPStorageEntity", + "Id": 1178, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 2 }, { - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Id": 1179, "CommandName": "Remove-PnPStoredCredential", + "Id": 1179, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Rank": 1 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Id": 1180, "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1180, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Rank": 1 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Id": 1181, "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1181, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Rank": 2 }, { - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Id": 1182, "CommandName": "Remove-PnPTeamsApp", + "Id": 1182, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Rank": 1 }, { - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Id": 1183, "CommandName": "Remove-PnPTeamsApp", + "Id": 1183, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Rank": 2 }, { - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Id": 1184, "CommandName": "Remove-PnPTeamsChannel", + "Id": 1184, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Rank": 1 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Id": 1185, "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1185, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Rank": 1 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 1186, "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1186, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 2 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Id": 1187, "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1187, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Rank": 3 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Id": 1188, "CommandName": "Remove-PnPTeamsTab", + "Id": 1188, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Rank": 1 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Id": 1189, "CommandName": "Remove-PnPTeamsTab", + "Id": 1189, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Rank": 2 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "Id": 1190, "CommandName": "Remove-PnPTeamsTab", + "Id": 1190, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "Rank": 3 }, { - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 1191, "CommandName": "Remove-PnPTeamsTag", + "Id": 1191, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 1 }, { - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 1192, "CommandName": "Remove-PnPTeamsTeam", + "Id": 1192, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1 }, { - "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Id": 1193, "CommandName": "Remove-PnPTeamsTeam", + "Id": 1193, + "Command": "Remove-PnPTeamsTeam -Identity testteam", "Rank": 2 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Id": 1194, "CommandName": "Remove-PnPTeamsUser", + "Id": 1194, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Rank": 1 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1195, "CommandName": "Remove-PnPTeamsUser", + "Id": 1195, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 2 }, { - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 1196, "CommandName": "Remove-PnPTenantCdnOrigin", + "Id": 1196, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1197, "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1197, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1198, "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1198, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1199, "CommandName": "Remove-PnPTenantSite", + "Id": 1199, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Id": 1200, "CommandName": "Remove-PnPTenantSite", + "Id": 1200, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Rank": 2 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Id": 1201, "CommandName": "Remove-PnPTenantSite", + "Id": 1201, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Rank": 3 }, { - "Command": "Remove-PnPTenantSyncClientRestriction", - "Id": 1202, "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Id": 1202, + "Command": "Remove-PnPTenantSyncClientRestriction", "Rank": 1 }, { - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 1203, "CommandName": "Remove-PnPTenantTheme", + "Id": 1203, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 1 }, { - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1204, "CommandName": "Remove-PnPTerm", + "Id": 1204, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1 }, { - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1205, "CommandName": "Remove-PnPTerm", + "Id": 1205, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2 }, { - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1206, "CommandName": "Remove-PnPTermGroup", + "Id": 1206, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1 }, { - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Id": 1207, "CommandName": "Remove-PnPTermGroup", + "Id": 1207, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Rank": 2 }, { - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Id": 1208, "CommandName": "Remove-PnPTermGroup", + "Id": 1208, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Rank": 3 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Id": 1209, "CommandName": "Remove-PnPTermLabel", + "Id": 1209, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Rank": 1 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1210, "CommandName": "Remove-PnPTermLabel", + "Id": 1210, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2 }, { - "Command": "Remove-PnPUser -Identity 23", - "Id": 1211, "CommandName": "Remove-PnPUser", + "Id": 1211, + "Command": "Remove-PnPUser -Identity 23", "Rank": 1 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Id": 1212, "CommandName": "Remove-PnPUser", + "Id": 1212, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Rank": 2 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Id": 1213, "CommandName": "Remove-PnPUser", + "Id": 1213, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Rank": 3 }, { - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 1214, "CommandName": "Remove-PnPUserInfo", + "Id": 1214, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1 }, { - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Id": 1215, "CommandName": "Remove-PnPUserProfile", + "Id": 1215, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Rank": 1 }, { - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Id": 1216, "CommandName": "Remove-PnPView", + "Id": 1216, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Rank": 1 }, { - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 1217, "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Id": 1217, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 1 }, { - "Command": "Remove-PnPWeb -Identity projectA", - "Id": 1218, "CommandName": "Remove-PnPWeb", + "Id": 1218, + "Command": "Remove-PnPWeb -Identity projectA", "Rank": 1 }, { - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Id": 1219, "CommandName": "Remove-PnPWeb", + "Id": 1219, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Rank": 2 }, { - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Id": 1220, "CommandName": "Remove-PnPWebhookSubscription", + "Id": 1220, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Rank": 1 }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1221, "CommandName": "Remove-PnPWebPart", + "Id": 1221, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1 }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Id": 1222, "CommandName": "Remove-PnPWebPart", + "Id": 1222, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Rank": 2 }, { - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Id": 1223, "CommandName": "Remove-PnPWikiPage", + "Id": 1223, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Rank": 1 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Id": 1224, "CommandName": "Rename-PnPFile", + "Id": 1224, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Rank": 1 }, { - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Id": 1225, "CommandName": "Rename-PnPFile", + "Id": 1225, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Rank": 2 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Id": 1226, "CommandName": "Rename-PnPFile", + "Id": 1226, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Rank": 3 }, { - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Id": 1227, "CommandName": "Rename-PnPFolder", + "Id": 1227, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Rank": 1 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1228, "CommandName": "Repair-PnPSite", + "Id": 1228, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1229, "CommandName": "Repair-PnPSite", + "Id": 1229, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2 }, { - "Command": "Request-PnPAccessToken", - "Id": 1230, "CommandName": "Request-PnPAccessToken", + "Id": 1230, + "Command": "Request-PnPAccessToken", "Rank": 1 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Id": 1231, "CommandName": "Request-PnPAccessToken", + "Id": 1231, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Rank": 2 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Id": 1232, "CommandName": "Request-PnPAccessToken", + "Id": 1232, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Rank": 3 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Id": 1233, "CommandName": "Request-PnPAccessToken", + "Id": 1233, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Rank": 4 }, { - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Id": 1234, "CommandName": "Request-PnPPersonalSite", + "Id": 1234, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Rank": 1 }, { - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Id": 1235, "CommandName": "Request-PnPPersonalSite", + "Id": 1235, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Rank": 2 }, { - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Id": 1236, "CommandName": "Request-PnPReIndexList", + "Id": 1236, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Rank": 1 }, { - "Command": "Request-PnPReIndexWeb", - "Id": 1237, "CommandName": "Request-PnPReIndexWeb", + "Id": 1237, + "Command": "Request-PnPReIndexWeb", "Rank": 1 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Id": 1238, "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1238, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Rank": 1 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Id": 1239, "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1239, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Rank": 2 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Id": 1240, "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1240, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Rank": 3 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Id": 1241, "CommandName": "Reset-PnPFileVersion", + "Id": 1241, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Rank": 1 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Id": 1242, "CommandName": "Reset-PnPFileVersion", + "Id": 1242, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Rank": 2 }, { - "Command": "Reset-PnPLabel -List \"Demo List\"", - "Id": 1243, "CommandName": "Reset-PnPLabel", + "Id": 1243, + "Command": "Reset-PnPLabel -List \"Demo List\"", "Rank": 1 }, { - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Id": 1244, "CommandName": "Reset-PnPLabel", + "Id": 1244, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Rank": 2 }, { - "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1245, "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1245, + "Command": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1 }, { - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Id": 1246, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Id": 1246, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Rank": 1 }, { - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Id": 1247, "CommandName": "Resolve-PnPFolder", + "Id": 1247, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Rank": 1 }, { - "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", - "Id": 1248, "CommandName": "Restore-PnPDeletedContainer", + "Id": 1248, + "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "Rank": 1 }, { - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1249, "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Id": 1249, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1250, "CommandName": "Restore-PnPFileVersion", + "Id": 1250, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1 }, { - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Id": 1251, "CommandName": "Restore-PnPFileVersion", + "Id": 1251, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Rank": 2 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1252, "CommandName": "Restore-PnPFileVersion", + "Id": 1252, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 3 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1253, "CommandName": "Restore-PnPListItemVersion", + "Id": 1253, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1254, "CommandName": "Restore-PnPListItemVersion", + "Id": 1254, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2 }, { - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 1255, "CommandName": "Restore-PnPRecycleBinItem", + "Id": 1255, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1256, "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1256, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 1257, "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1257, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1258, "CommandName": "Restore-PnPTenantSite", + "Id": 1258, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1259, "CommandName": "Restore-PnPTenantSite", + "Id": 1259, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Id": 1260, "CommandName": "Restore-PnPTenantSite", + "Id": 1260, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Rank": 3 }, { - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Id": 1261, "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Id": 1261, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Rank": 1 }, { - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1262, "CommandName": "Revoke-PnPHubSiteRights", + "Id": 1262, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1 }, { - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1263, "CommandName": "Revoke-PnPSiteDesignRights", + "Id": 1263, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1 }, { - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 1264, "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Id": 1264, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1 }, { - "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Id": 1265, "CommandName": "Revoke-PnPUserSession", + "Id": 1265, + "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Rank": 1 }, { - "Command": "Save-PnPPageConversionLog", - "Id": 1266, "CommandName": "Save-PnPPageConversionLog", + "Id": 1266, + "Command": "Save-PnPPageConversionLog", "Rank": 1 }, { - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Id": 1267, "CommandName": "Save-PnPSiteTemplate", + "Id": 1267, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Rank": 1 }, { - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Id": 1268, "CommandName": "Save-PnPTenantTemplate", + "Id": 1268, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Rank": 1 }, { - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Id": 1269, "CommandName": "Send-PnPMail", + "Id": 1269, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 1 }, { - "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": 1270, "CommandName": "Send-PnPMail", + "Id": 1270, + "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", "Rank": 2 }, { - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Id": 1271, "CommandName": "Send-PnPMail", + "Id": 1271, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 3 }, { - "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": 1272, "CommandName": "Send-PnPMail", + "Id": 1272, + "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", "Rank": 4 }, { - "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": 1273, "CommandName": "Send-PnPMail", + "Id": 1273, + "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", "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 -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"", - "Id": 1274, "CommandName": "Send-PnPMail", + "Id": 1274, + "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\"", "Rank": 6 }, { - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Id": 1275, "CommandName": "Set-PnPAdaptiveScopeProperty", + "Id": 1275, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Rank": 1 }, { - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1276, "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1276, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1 }, { - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Id": 1277, "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1277, + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "Rank": 2 }, { - "Command": "Set-PnPAppSideLoading -On", - "Id": 1278, "CommandName": "Set-PnPAppSideLoading", + "Id": 1278, + "Command": "Set-PnPAppSideLoading -On", "Rank": 1 }, { - "Command": "Set-PnPAppSideLoading -Off", - "Id": 1279, "CommandName": "Set-PnPAppSideLoading", + "Id": 1279, + "Command": "Set-PnPAppSideLoading -Off", "Rank": 2 }, { - "Command": "Set-PnPAuditing -EnableAll", - "Id": 1280, "CommandName": "Set-PnPAuditing", + "Id": 1280, + "Command": "Set-PnPAuditing -EnableAll", "Rank": 1 }, { - "Command": "Set-PnPAuditing -DisableAll", - "Id": 1281, "CommandName": "Set-PnPAuditing", + "Id": 1281, + "Command": "Set-PnPAuditing -DisableAll", "Rank": 2 }, { - "Command": "Set-PnPAuditing -RetentionTime 7", - "Id": 1282, "CommandName": "Set-PnPAuditing", + "Id": 1282, + "Command": "Set-PnPAuditing -RetentionTime 7", "Rank": 3 }, { - "Command": "Set-PnPAuditing -TrimAuditLog", - "Id": 1283, "CommandName": "Set-PnPAuditing", + "Id": 1283, + "Command": "Set-PnPAuditing -TrimAuditLog", "Rank": 4 }, { - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Id": 1284, "CommandName": "Set-PnPAuditing", + "Id": 1284, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Rank": 5 }, { - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Id": 1285, "CommandName": "Set-PnPAvailablePageLayouts", + "Id": 1285, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Rank": 1 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Id": 1286, "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1286, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Rank": 1 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Id": 1287, "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1287, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Rank": 2 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1288, "CommandName": "Set-PnPAzureADGroup", + "Id": 1288, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1 }, { - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1289, "CommandName": "Set-PnPAzureADGroup", + "Id": 1289, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Id": 1290, "CommandName": "Set-PnPAzureADGroup", + "Id": 1290, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Rank": 3 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Id": 1291, "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1291, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Rank": 1 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Id": 1292, "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1292, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Rank": 2 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Id": 1293, "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1293, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Rank": 3 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Id": 1294, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1294, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Rank": 1 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Id": 1295, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1295, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Rank": 2 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Id": 1296, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1296, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Rank": 1 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Id": 1297, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1297, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Rank": 2 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Id": 1298, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1298, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Rank": 3 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Id": 1299, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1299, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Rank": 4 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1300, "CommandName": "Set-PnPContentType", + "Id": 1300, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 1 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Id": 1301, "CommandName": "Set-PnPContentType", + "Id": 1301, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Rank": 2 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1302, "CommandName": "Set-PnPContentType", + "Id": 1302, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 3 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1303, "CommandName": "Set-PnPContentType", + "Id": 1303, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 4 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1304, "CommandName": "Set-PnPContentType", + "Id": 1304, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 5 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Id": 1305, "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1305, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Rank": 1 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Id": 1306, "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1306, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Rank": 2 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Id": 1307, "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1307, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Rank": 3 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Id": 1308, "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1308, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Rank": 4 }, { - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Id": 1309, "CommandName": "Set-PnPDefaultContentTypeToList", + "Id": 1309, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Rank": 1 }, { - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Id": 1310, "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1310, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Rank": 1 }, { - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Id": 1311, "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1311, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Rank": 2 }, { - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Id": 1312, "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1312, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Rank": 3 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Id": 1313, "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1313, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Rank": 1 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1314, "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1314, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 2 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1315, "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1315, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 3 }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Id": 1316, "CommandName": "Set-PnPDocumentSetField", + "Id": 1316, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Rank": 1 }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Id": 1317, "CommandName": "Set-PnPDocumentSetField", + "Id": 1317, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Rank": 2 }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Id": 1318, "CommandName": "Set-PnPField", + "Id": 1318, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Rank": 1 }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Id": 1319, "CommandName": "Set-PnPField", + "Id": 1319, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Rank": 2 }, { - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Id": 1320, "CommandName": "Set-PnPField", + "Id": 1320, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Rank": 3 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Id": 1321, "CommandName": "Set-PnPFileCheckedIn", + "Id": 1321, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Rank": 1 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Id": 1322, "CommandName": "Set-PnPFileCheckedIn", + "Id": 1322, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Rank": 2 }, { - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Id": 1323, "CommandName": "Set-PnPFileCheckedOut", + "Id": 1323, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Rank": 1 }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1324, "CommandName": "Set-PnPFolderPermission", + "Id": 1324, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1 }, { - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1325, "CommandName": "Set-PnPFolderPermission", + "Id": 1325, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2 }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1326, "CommandName": "Set-PnPFolderPermission", + "Id": 1326, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3 }, { - "Command": "Set-PnPFooter -Enabled:$true", - "Id": 1327, "CommandName": "Set-PnPFooter", + "Id": 1327, + "Command": "Set-PnPFooter -Enabled:$true", "Rank": 1 }, { - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Id": 1328, "CommandName": "Set-PnPFooter", + "Id": 1328, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Rank": 2 }, { - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Id": 1329, "CommandName": "Set-PnPFooter", + "Id": 1329, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Rank": 3 }, { - "Command": "Set-PnPFooter -LogoUrl \"\"", - "Id": 1330, "CommandName": "Set-PnPFooter", + "Id": 1330, + "Command": "Set-PnPFooter -LogoUrl \"\"", "Rank": 4 }, { - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Id": 1331, "CommandName": "Set-PnPGraphSubscription", + "Id": 1331, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Rank": 1 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Id": 1332, "CommandName": "Set-PnPGroup", + "Id": 1332, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Rank": 1 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Id": 1333, "CommandName": "Set-PnPGroup", + "Id": 1333, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Rank": 2 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Id": 1334, "CommandName": "Set-PnPGroupPermissions", + "Id": 1334, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Rank": 1 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Id": 1335, "CommandName": "Set-PnPGroupPermissions", + "Id": 1335, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Rank": 2 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Id": 1336, "CommandName": "Set-PnPGroupPermissions", + "Id": 1336, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Rank": 3 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Id": 1337, "CommandName": "Set-PnPGroupPermissions", + "Id": 1337, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Rank": 4 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Id": 1338, "CommandName": "Set-PnPGroupPermissions", + "Id": 1338, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Rank": 5 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Id": 1339, "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1339, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Rank": 1 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Id": 1340, "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1340, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Rank": 2 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Id": 1341, "CommandName": "Set-PnPHomePage", + "Id": 1341, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Rank": 1 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Id": 1342, "CommandName": "Set-PnPHomePage", + "Id": 1342, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Rank": 2 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Id": 1343, "CommandName": "Set-PnPHomeSite", + "Id": 1343, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Rank": 1 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Id": 1344, "CommandName": "Set-PnPHomeSite", + "Id": 1344, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Rank": 2 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Id": 1345, "CommandName": "Set-PnPHubSite", + "Id": 1345, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Rank": 1 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Id": 1346, "CommandName": "Set-PnPHubSite", + "Id": 1346, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Rank": 2 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Id": 1347, "CommandName": "Set-PnPHubSite", + "Id": 1347, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Rank": 3 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Id": 1348, "CommandName": "Set-PnPHubSite", + "Id": 1348, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Rank": 4 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Id": 1349, "CommandName": "Set-PnPHubSite", + "Id": 1349, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Rank": 5 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Id": 1350, "CommandName": "Set-PnPHubSite", + "Id": 1350, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Rank": 6 }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Id": 1351, "CommandName": "Set-PnPImageListItemColumn", + "Id": 1351, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Rank": 1 }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Id": 1352, "CommandName": "Set-PnPImageListItemColumn", + "Id": 1352, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Rank": 2 }, { - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Id": 1353, "CommandName": "Set-PnPIndexedProperties", + "Id": 1353, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Rank": 1 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Id": 1354, "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1354, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Rank": 1 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Id": 1355, "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1355, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Rank": 2 }, { - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Id": 1356, "CommandName": "Set-PnPKnowledgeHubSite", + "Id": 1356, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Rank": 1 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Id": 1357, "CommandName": "Set-PnPLabel", + "Id": 1357, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Rank": 1 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Id": 1358, "CommandName": "Set-PnPLabel", + "Id": 1358, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Rank": 2 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Id": 1359, "CommandName": "Set-PnPList", + "Id": 1359, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Rank": 1 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Id": 1360, "CommandName": "Set-PnPList", + "Id": 1360, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Rank": 2 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Id": 1361, "CommandName": "Set-PnPList", + "Id": 1361, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Rank": 3 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Id": 1362, "CommandName": "Set-PnPList", + "Id": 1362, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Rank": 4 }, { - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Id": 1363, "CommandName": "Set-PnPList", + "Id": 1363, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Rank": 5 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Id": 1364, "CommandName": "Set-PnPList", + "Id": 1364, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Rank": 6 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Id": 1365, "CommandName": "Set-PnPList", + "Id": 1365, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Rank": 7 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Id": 1366, "CommandName": "Set-PnPList", + "Id": 1366, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Rank": 8 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Id": 1367, "CommandName": "Set-PnPList", + "Id": 1367, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Rank": 9 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Id": 1368, "CommandName": "Set-PnPList", + "Id": 1368, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Rank": 10 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Id": 1369, "CommandName": "Set-PnPList", + "Id": 1369, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Rank": 11 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Id": 1370, "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1370, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Rank": 1 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Id": 1371, "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1371, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Rank": 2 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1372, "CommandName": "Set-PnPListItem", + "Id": 1372, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1373, "CommandName": "Set-PnPListItem", + "Id": 1373, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1374, "CommandName": "Set-PnPListItem", + "Id": 1374, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 3 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Id": 1375, "CommandName": "Set-PnPListItem", + "Id": 1375, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Rank": 4 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Id": 1376, "CommandName": "Set-PnPListItem", + "Id": 1376, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Rank": 5 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 1377, "CommandName": "Set-PnPListItemAsRecord", + "Id": 1377, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Id": 1378, "CommandName": "Set-PnPListItemAsRecord", + "Id": 1378, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Rank": 2 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1379, "CommandName": "Set-PnPListItemPermission", + "Id": 1379, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1380, "CommandName": "Set-PnPListItemPermission", + "Id": 1380, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1381, "CommandName": "Set-PnPListItemPermission", + "Id": 1381, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Id": 1382, "CommandName": "Set-PnPListItemPermission", + "Id": 1382, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Rank": 4 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Id": 1383, "CommandName": "Set-PnPListItemPermission", + "Id": 1383, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Rank": 5 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1384, "CommandName": "Set-PnPListPermission", + "Id": 1384, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1385, "CommandName": "Set-PnPListPermission", + "Id": 1385, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Id": 1386, "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1386, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Rank": 1 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Id": 1387, "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1387, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Rank": 2 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1388, "CommandName": "Set-PnPMasterPage", + "Id": 1388, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 1 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1389, "CommandName": "Set-PnPMasterPage", + "Id": 1389, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 2 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1390, "CommandName": "Set-PnPMasterPage", + "Id": 1390, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 3 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1391, "CommandName": "Set-PnPMasterPage", + "Id": 1391, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 4 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Id": 1392, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1392, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1393, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1393, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1394, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1394, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Id": 1395, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1395, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1396, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1396, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1397, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1397, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Id": 1398, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1398, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1399, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1399, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1400, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1400, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Id": 1401, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1401, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1402, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1402, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1403, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1403, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Id": 1404, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1404, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Id": 1405, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1405, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1406, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1406, + "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Id": 1407, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1407, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Id": 1408, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1408, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1409, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1409, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1410, "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1410, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1411, "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1411, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Id": 1412, "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1412, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Rank": 3 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Id": 1413, "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1413, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Rank": 4 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Id": 1414, "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1414, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Rank": 5 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 1415, "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1415, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Id": 1416, "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1416, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Rank": 1 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Id": 1417, "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1417, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Rank": 2 }, { - "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Id": 1418, "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1418, + "Command": "Set-PnPMinimalDownloadStrategy -Off", "Rank": 1 }, { - "Command": "Set-PnPMinimalDownloadStrategy -On", - "Id": 1419, "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1419, + "Command": "Set-PnPMinimalDownloadStrategy -On", "Rank": 2 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Id": 1420, "CommandName": "Set-PnPPage", + "Id": 1420, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Rank": 1 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Id": 1421, "CommandName": "Set-PnPPage", + "Id": 1421, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Rank": 2 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Id": 1422, "CommandName": "Set-PnPPage", + "Id": 1422, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Rank": 3 }, { - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Id": 1423, "CommandName": "Set-PnPPage", + "Id": 1423, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Rank": 4 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Id": 1424, "CommandName": "Set-PnPPage", + "Id": 1424, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Rank": 5 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Id": 1425, "CommandName": "Set-PnPPage", + "Id": 1425, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Rank": 6 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 1426, "CommandName": "Set-PnPPage", + "Id": 1426, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Id": 1427, "CommandName": "Set-PnPPage", + "Id": 1427, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Rank": 8 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 1428, "CommandName": "Set-PnPPage", + "Id": 1428, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 1429, "CommandName": "Set-PnPPage", + "Id": 1429, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Id": 1430, "CommandName": "Set-PnPPage", + "Id": 1430, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Rank": 11 }, { - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Id": 1431, "CommandName": "Set-PnPPageTextPart", + "Id": 1431, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Rank": 1 }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Id": 1432, "CommandName": "Set-PnPPageWebPart", + "Id": 1432, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Rank": 1 }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Id": 1433, "CommandName": "Set-PnPPageWebPart", + "Id": 1433, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Rank": 2 }, { - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Id": 1434, "CommandName": "Set-PnPPlannerBucket", + "Id": 1434, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Rank": 1 }, { - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Id": 1435, "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1435, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Rank": 1 }, { - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Id": 1436, "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1436, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Rank": 2 }, { - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Id": 1437, "CommandName": "Set-PnPPlannerPlan", + "Id": 1437, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Rank": 1 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Id": 1438, "CommandName": "Set-PnPPlannerTask", + "Id": 1438, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Rank": 1 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Id": 1439, "CommandName": "Set-PnPPlannerTask", + "Id": 1439, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Rank": 2 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Id": 1440, "CommandName": "Set-PnPPlannerTask", + "Id": 1440, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3 }, { - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1441, "CommandName": "Set-PnPPlannerUserPolicy", + "Id": 1441, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Id": 1442, "CommandName": "Set-PnPPropertyBagValue", + "Id": 1442, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Rank": 1 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Id": 1443, "CommandName": "Set-PnPPropertyBagValue", + "Id": 1443, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Rank": 2 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Id": 1444, "CommandName": "Set-PnPPropertyBagValue", + "Id": 1444, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Rank": 3 }, { - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Id": 1445, "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1445, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Rank": 1 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled", - "Id": 1446, "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1446, + "Command": "Set-PnPRequestAccessEmails -Disabled", "Rank": 2 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Id": 1447, "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1447, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Rank": 3 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Id": 1448, "CommandName": "Set-PnPRoleDefinition", + "Id": 1448, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Rank": 1 }, { - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Id": 1449, "CommandName": "Set-PnPRoleDefinition", + "Id": 1449, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Rank": 2 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Id": 1450, "CommandName": "Set-PnPRoleDefinition", + "Id": 1450, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Rank": 3 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Id": 1451, "CommandName": "Set-PnPRoleDefinition", + "Id": 1451, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Rank": 4 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Id": 1452, "CommandName": "Set-PnPSearchConfiguration", + "Id": 1452, + "Command": "Set-PnPSearchConfiguration -Configuration $config", "Rank": 1 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1453, "CommandName": "Set-PnPSearchConfiguration", + "Id": 1453, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1454, "CommandName": "Set-PnPSearchConfiguration", + "Id": 1454, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3 }, { - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1455, "CommandName": "Set-PnPSearchConfiguration", + "Id": 1455, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4 }, { - "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": 1456, "CommandName": "Set-PnPSearchExternalItem", + "Id": 1456, + "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", "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 -GrantUsers \"user@contoso.onmicrosoft.com\"", - "Id": 1457, "CommandName": "Set-PnPSearchExternalItem", + "Id": 1457, + "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\"", "Rank": 2 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Id": 1458, "CommandName": "Set-PnPSearchSettings", + "Id": 1458, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Rank": 1 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Id": 1459, "CommandName": "Set-PnPSearchSettings", + "Id": 1459, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Rank": 2 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Id": 1460, "CommandName": "Set-PnPSearchSettings", + "Id": 1460, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Rank": 3 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Id": 1461, "CommandName": "Set-PnPSearchSettings", + "Id": 1461, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Rank": 4 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Id": 1462, "CommandName": "Set-PnPSearchSettings", + "Id": 1462, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Rank": 5 }, { - "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Id": 1463, "CommandName": "Set-PnPSearchSettings", + "Id": 1463, + "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Rank": 6 }, { - "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Id": 1464, "CommandName": "Set-PnPSearchSettings", + "Id": 1464, + "Command": "Set-PnPSearchSettings -SearchScope Hub", "Rank": 7 }, { - "Command": "Set-PnPSite -Classification \"HBI\"", - "Id": 1465, "CommandName": "Set-PnPSite", + "Id": 1465, + "Command": "Set-PnPSite -Classification \"HBI\"", "Rank": 1 }, { - "Command": "Set-PnPSite -Classification $null", - "Id": 1466, "CommandName": "Set-PnPSite", + "Id": 1466, + "Command": "Set-PnPSite -Classification $null", "Rank": 2 }, { - "Command": "Set-PnPSite -DisableFlows", - "Id": 1467, "CommandName": "Set-PnPSite", + "Id": 1467, + "Command": "Set-PnPSite -DisableFlows", "Rank": 3 }, { - "Command": "Set-PnPSite -DisableFlows:$false", - "Id": 1468, "CommandName": "Set-PnPSite", + "Id": 1468, + "Command": "Set-PnPSite -DisableFlows:$false", "Rank": 4 }, { - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Id": 1469, "CommandName": "Set-PnPSite", + "Id": 1469, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Rank": 5 }, { - "Command": "Set-PnPSite -NoScriptSite $false", - "Id": 1470, "CommandName": "Set-PnPSite", + "Id": 1470, + "Command": "Set-PnPSite -NoScriptSite $false", "Rank": 6 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Id": 1471, "CommandName": "Set-PnPSite", + "Id": 1471, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Rank": 7 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Id": 1472, "CommandName": "Set-PnPSite", + "Id": 1472, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Rank": 8 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Id": 1473, "CommandName": "Set-PnPSite", + "Id": 1473, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Rank": 9 }, { - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Id": 1474, "CommandName": "Set-PnPSite", + "Id": 1474, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Rank": 10 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Id": 1475, "CommandName": "Set-PnPSite", + "Id": 1475, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Rank": 11 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Id": 1476, "CommandName": "Set-PnPSite", + "Id": 1476, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Rank": 12 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Id": 1477, "CommandName": "Set-PnPSite", + "Id": 1477, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Rank": 13 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Id": 1478, "CommandName": "Set-PnPSite", + "Id": 1478, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Rank": 14 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Id": 1479, "CommandName": "Set-PnPSite", + "Id": 1479, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Rank": 15 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "Id": 1480, "CommandName": "Set-PnPSite", + "Id": 1480, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Rank": 16 }, { - "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Id": 1481, "CommandName": "Set-PnPSite", + "Id": 1481, + "Command": "Set-PnPSite -CancelVPForExistingLibs", "Rank": 17 }, { - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Id": 1482, "CommandName": "Set-PnPSiteClassification", + "Id": 1482, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Rank": 1 }, { - "Command": "Set-PnPSiteClosure -State Open", - "Id": 1483, "CommandName": "Set-PnPSiteClosure", + "Id": 1483, + "Command": "Set-PnPSiteClosure -State Open", "Rank": 1 }, { - "Command": "Set-PnPSiteClosure -State Closed", - "Id": 1484, "CommandName": "Set-PnPSiteClosure", + "Id": 1484, + "Command": "Set-PnPSiteClosure -State Closed", "Rank": 2 }, { - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Id": 1485, "CommandName": "Set-PnPSiteDesign", + "Id": 1485, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Rank": 1 }, { - "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": 1486, "CommandName": "Set-PnPSiteDesign", + "Id": 1486, + "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\"", "Rank": 2 }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Id": 1487, "CommandName": "Set-PnPSiteGroup", + "Id": 1487, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Rank": 1 }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Id": 1488, "CommandName": "Set-PnPSiteGroup", + "Id": 1488, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Rank": 2 }, { - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 1489, "CommandName": "Set-PnPSitePolicy", + "Id": 1489, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 1 }, { - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1490, "CommandName": "Set-PnPSiteScript", + "Id": 1490, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1 }, { - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1491, "CommandName": "Set-PnPSiteScriptPackage", + "Id": 1491, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Id": 1492, "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1492, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Rank": 1 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Id": 1493, "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1493, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Rank": 2 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1494, "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1494, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Rank": 1 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1495, "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1495, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Rank": 2 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1496, "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1496, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 3 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1497, "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1497, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 4 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1498, "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1498, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 5 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1499, "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1499, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 6 }, { - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1500, "CommandName": "Set-PnPStorageEntity", + "Id": 1500, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 1 }, { - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1501, "CommandName": "Set-PnPStorageEntity", + "Id": 1501, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 2 }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1502, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1502, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1 }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1503, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1503, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 2 }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1504, "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1504, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1 }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1505, "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1505, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 2 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Id": 1506, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1506, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Rank": 1 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Id": 1507, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1507, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Rank": 2 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Id": 1508, "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1508, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Rank": 1 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Id": 1509, "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1509, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Rank": 2 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Id": 1510, "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1510, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Rank": 3 }, { - "Command": "Set-PnPTeamifyPromptHidden", - "Id": 1511, "CommandName": "Set-PnPTeamifyPromptHidden", + "Id": 1511, + "Command": "Set-PnPTeamifyPromptHidden", "Rank": 1 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Id": 1512, "CommandName": "Set-PnPTeamsChannel", + "Id": 1512, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Rank": 1 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Id": 1513, "CommandName": "Set-PnPTeamsChannel", + "Id": 1513, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Rank": 2 }, { - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Id": 1514, "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1514, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Rank": 1 }, { - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Id": 1515, "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1515, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Rank": 2 }, { - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Id": 1516, "CommandName": "Set-PnPTeamsTab", + "Id": 1516, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Rank": 1 }, { - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Id": 1517, "CommandName": "Set-PnPTeamsTag", + "Id": 1517, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Rank": 1 }, { - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Id": 1518, "CommandName": "Set-PnPTeamsTeam", + "Id": 1518, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Rank": 1 }, { - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Id": 1519, "CommandName": "Set-PnPTeamsTeam", + "Id": 1519, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Rank": 2 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Id": 1520, "CommandName": "Set-PnPTeamsTeam", + "Id": 1520, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Rank": 3 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Id": 1521, "CommandName": "Set-PnPTeamsTeam", + "Id": 1521, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Rank": 4 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Id": 1522, "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1522, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Rank": 1 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Id": 1523, "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1523, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Rank": 2 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Id": 1524, "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1524, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Rank": 3 }, { - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Id": 1525, "CommandName": "Set-PnPTeamsTeamPicture", + "Id": 1525, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Rank": 1 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Id": 1526, "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1526, + "Command": "Set-PnPTemporarilyDisableAppBar $true", "Rank": 1 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Id": 1527, "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1527, + "Command": "Set-PnPTemporarilyDisableAppBar $false", "Rank": 2 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "Id": 1528, "CommandName": "Set-PnPTenant", + "Id": 1528, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "Rank": 1 }, { - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Id": 1529, "CommandName": "Set-PnPTenant", + "Id": 1529, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Rank": 2 }, { - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Id": 1530, "CommandName": "Set-PnPTenant", + "Id": 1530, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Rank": 3 }, { - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Id": 1531, "CommandName": "Set-PnPTenant", + "Id": 1531, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Rank": 4 }, { - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Id": 1532, "CommandName": "Set-PnPTenantAppCatalogUrl", + "Id": 1532, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Rank": 1 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Id": 1533, "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1533, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Rank": 1 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Id": 1534, "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1534, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Rank": 2 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Id": 1535, "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1535, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Rank": 3 }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "Id": 1536, "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1536, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "Rank": 1 }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Id": 1537, "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1537, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Rank": 2 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Id": 1538, "CommandName": "Set-PnPTenantSite", + "Id": 1538, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Rank": 1 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Id": 1539, "CommandName": "Set-PnPTenantSite", + "Id": 1539, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Rank": 2 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1540, "CommandName": "Set-PnPTenantSite", + "Id": 1540, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 3 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1541, "CommandName": "Set-PnPTenantSite", + "Id": 1541, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 4 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Id": 1542, "CommandName": "Set-PnPTenantSite", + "Id": 1542, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Rank": 5 }, { - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Id": 1543, "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1543, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Rank": 1 }, { - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Id": 1544, "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1544, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Rank": 2 }, { - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Id": 1545, "CommandName": "Set-PnPTerm", + "Id": 1545, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Rank": 1 }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1546, "CommandName": "Set-PnPTerm", + "Id": 1546, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2 }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1547, "CommandName": "Set-PnPTerm", + "Id": 1547, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 3 }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "Id": 1548, "CommandName": "Set-PnPTerm", + "Id": 1548, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Rank": 4 }, { - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Id": 1549, "CommandName": "Set-PnPTermGroup", + "Id": 1549, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Rank": 1 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Id": 1550, "CommandName": "Set-PnPTermSet", + "Id": 1550, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Rank": 1 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Id": 1551, "CommandName": "Set-PnPTermSet", + "Id": 1551, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Rank": 2 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Id": 1552, "CommandName": "Set-PnPTermSet", + "Id": 1552, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Rank": 3 }, { - "Command": "Set-PnPTheme", - "Id": 1553, "CommandName": "Set-PnPTheme", + "Id": 1553, + "Command": "Set-PnPTheme", "Rank": 1 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Id": 1554, "CommandName": "Set-PnPTheme", + "Id": 1554, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Rank": 2 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Id": 1555, "CommandName": "Set-PnPTheme", + "Id": 1555, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Rank": 3 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Id": 1556, "CommandName": "Set-PnPTheme", + "Id": 1556, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Rank": 4 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Id": 1557, "CommandName": "Set-PnPTraceLog", + "Id": 1557, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Rank": 1 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Id": 1558, "CommandName": "Set-PnPTraceLog", + "Id": 1558, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Rank": 2 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Id": 1559, "CommandName": "Set-PnPTraceLog", + "Id": 1559, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Rank": 3 }, { - "Command": "Set-PnPTraceLog -Off", - "Id": 1560, "CommandName": "Set-PnPTraceLog", + "Id": 1560, + "Command": "Set-PnPTraceLog -Off", "Rank": 4 }, { - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Id": 1561, "CommandName": "Set-PnPUserOneDriveQuota", + "Id": 1561, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Rank": 1 }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Id": 1562, "CommandName": "Set-PnPUserProfileProperty", + "Id": 1562, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Rank": 1 }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Id": 1563, "CommandName": "Set-PnPUserProfileProperty", + "Id": 1563, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Rank": 2 }, { - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Id": 1564, "CommandName": "Set-PnPView", + "Id": 1564, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Rank": 1 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Id": 1565, "CommandName": "Set-PnPView", + "Id": 1565, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Rank": 2 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", - "Id": 1566, "CommandName": "Set-PnPView", + "Id": 1566, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", "Rank": 3 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Id": 1567, "CommandName": "Set-PnPView", + "Id": 1567, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Rank": 4 }, { - "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": 1568, "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1568, + "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", "Rank": 1 }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Id": 1569, "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1569, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Rank": 2 }, { - "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": 1570, "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1570, + "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", "Rank": 3 }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Id": 1571, "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1571, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Rank": 4 }, { - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Id": 1572, "CommandName": "Set-PnPWeb", + "Id": 1572, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Rank": 1 }, { - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Id": 1573, "CommandName": "Set-PnPWeb", + "Id": 1573, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Rank": 2 }, { - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Id": 1574, "CommandName": "Set-PnPWeb", + "Id": 1574, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Rank": 3 }, { - "Command": "Set-PnPWeb -NoCrawl:$true", - "Id": 1575, "CommandName": "Set-PnPWeb", + "Id": 1575, + "Command": "Set-PnPWeb -NoCrawl:$true", "Rank": 4 }, { - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Id": 1576, "CommandName": "Set-PnPWebHeader", + "Id": 1576, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Rank": 1 }, { - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Id": 1577, "CommandName": "Set-PnPWebHeader", + "Id": 1577, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Rank": 2 }, { - "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Id": 1578, "CommandName": "Set-PnPWebHeader", + "Id": 1578, + "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Rank": 3 }, { - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 1579, "CommandName": "Set-PnPWebhookSubscription", + "Id": 1579, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1 }, { - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Id": 1580, "CommandName": "Set-PnPWebhookSubscription", + "Id": 1580, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Rank": 2 }, { - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "Id": 1581, "CommandName": "Set-PnPWebPartProperty", + "Id": 1581, + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "Rank": 1 }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1582, "CommandName": "Set-PnPWebPermission", + "Id": 1582, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 1 }, { - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Id": 1583, "CommandName": "Set-PnPWebPermission", + "Id": 1583, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Rank": 2 }, { - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1584, "CommandName": "Set-PnPWebPermission", + "Id": 1584, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 3 }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Id": 1585, "CommandName": "Set-PnPWebPermission", + "Id": 1585, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Rank": 4 }, { - "Command": "Set-PnPWebTheme -Theme MyTheme", - "Id": 1586, "CommandName": "Set-PnPWebTheme", + "Id": 1586, + "Command": "Set-PnPWebTheme -Theme MyTheme", "Rank": 1 }, { - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Id": 1587, "CommandName": "Set-PnPWebTheme", + "Id": 1587, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Rank": 2 }, { - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Id": 1588, "CommandName": "Set-PnPWikiPageContent", + "Id": 1588, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Rank": 1 }, { - "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Id": 1589, "CommandName": "Submit-PnPSearchQuery", + "Id": 1589, + "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Rank": 1 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Id": 1590, "CommandName": "Submit-PnPSearchQuery", + "Id": 1590, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Rank": 2 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Id": 1591, "CommandName": "Submit-PnPSearchQuery", + "Id": 1591, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Rank": 3 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Id": 1592, "CommandName": "Submit-PnPSearchQuery", + "Id": 1592, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Rank": 4 }, { - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Id": 1593, "CommandName": "Submit-PnPSearchQuery", + "Id": 1593, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Rank": 5 }, { - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", - "Id": 1594, "CommandName": "Submit-PnPSearchQuery", + "Id": 1594, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", "Rank": 6 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Id": 1595, "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1595, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Rank": 1 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html", - "Id": 1596, "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1596, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html", "Rank": 2 }, { - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1597, "CommandName": "Sync-PnPAppToTeams", + "Id": 1597, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Id": 1598, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1598, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Rank": 1 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Id": 1599, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1599, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Rank": 2 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Id": 1600, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1600, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Rank": 3 }, { - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Id": 1601, "CommandName": "Test-PnPListItemIsRecord", + "Id": 1601, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Rank": 1 }, { - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Id": 1602, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Id": 1602, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Rank": 1 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1603, "CommandName": "Test-PnPSite", + "Id": 1603, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1604, "CommandName": "Test-PnPSite", + "Id": 1604, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2 }, { - "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Id": 1605, "CommandName": "Test-PnPTenantTemplate", + "Id": 1605, + "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Rank": 1 }, { - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Id": 1606, "CommandName": "Undo-PnPFileCheckedOut", + "Id": 1606, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Rank": 1 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1607, "CommandName": "Uninstall-PnPApp", + "Id": 1607, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1608, "CommandName": "Uninstall-PnPApp", + "Id": 1608, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1609, "CommandName": "Unpublish-PnPApp", + "Id": 1609, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1610, "CommandName": "Unpublish-PnPApp", + "Id": 1610, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2 }, { - "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Id": 1611, "CommandName": "Unpublish-PnPContentType", + "Id": 1611, + "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Rank": 1 }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 1612, "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1612, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1 }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", - "Id": 1613, "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1613, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", "Rank": 2 }, { - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1614, "CommandName": "Unregister-PnPHubSite", + "Id": 1614, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1615, "CommandName": "Update-PnPApp", + "Id": 1615, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1616, "CommandName": "Update-PnPApp", + "Id": 1616, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2 }, { - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1617, "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1617, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 1 }, { - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Id": 1618, "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1618, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Rank": 2 }, { - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 1619, "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1619, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 3 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Id": 1620, "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1620, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Rank": 1 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 1621, "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1621, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2 }, { - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Id": 1622, "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1622, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Rank": 3 }, { - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Id": 1623, "CommandName": "Update-PnPTeamsApp", + "Id": 1623, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Rank": 1 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1624, "CommandName": "Update-PnPTeamsUser", + "Id": 1624, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 1625, "CommandName": "Update-PnPTeamsUser", + "Id": 1625, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2 }, { - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Id": 1626, "CommandName": "Update-PnPTeamsUser", + "Id": 1626, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Rank": 3 }, { - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Id": 1627, "CommandName": "Update-PnPUserType", + "Id": 1627, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Rank": 1 } ] diff --git a/version.txt b/version.txt index 982a4bb44..1bc6c3c33 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.35 \ No newline at end of file +2.3.36 \ No newline at end of file From 44827da6c9fb671104948778f39e8eab0e5b6442 Mon Sep 17 00:00:00 2001 From: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Date: Fri, 26 Jan 2024 02:37:27 +0000 Subject: [PATCH 51/53] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9762 ++++++++--------- version.txt | 2 +- 3 files changed, 4883 insertions(+), 4883 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 367dc9f71..ae6a8b71d 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -247245e14f0fb07418c5c94e31169fdb5fd4bbb3 \ No newline at end of file +7c463c88c5dfba208b6d09b553b32f1a90f8051f \ 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 58e64c931..0bda0aa78 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9764 +1,9764 @@ [ { - "CommandName": "Add-PnPAlert", "Id": 1, - "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1 + "CommandName": "Add-PnPAlert", + "Rank": 1, + "Command": "Add-PnPAlert -List \"Demo List\"" }, { - "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)", - "Rank": 2 + "CommandName": "Add-PnPAlert", + "Rank": 2, + "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)" }, { - "CommandName": "Add-PnPAlert", "Id": 3, - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3 + "CommandName": "Add-PnPAlert", + "Rank": 3, + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "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))", - "Rank": 4 + "CommandName": "Add-PnPAlert", + "Rank": 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))" }, { - "CommandName": "Add-PnPApp", "Id": 5, - "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Rank": 1 + "CommandName": "Add-PnPApp", + "Rank": 1, + "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { - "CommandName": "Add-PnPApp", "Id": 6, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2 + "CommandName": "Add-PnPApp", + "Rank": 2, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { - "CommandName": "Add-PnPApp", "Id": 7, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Rank": 3 + "CommandName": "Add-PnPApp", + "Rank": 3, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { - "CommandName": "Add-PnPApp", "Id": 8, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Rank": 4 + "CommandName": "Add-PnPApp", + "Rank": 4, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { - "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`\"}", - "Rank": 1 + "CommandName": "Add-PnPApplicationCustomizer", + "Rank": 1, + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}" }, { - "CommandName": "Add-PnPAvailableSiteClassification", "Id": 10, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Rank": 1 + "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 1, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { - "CommandName": "Add-PnPAvailableSiteClassification", "Id": 11, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2 + "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 2, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { - "CommandName": "Add-PnPAzureADGroupMember", "Id": 12, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 1, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPAzureADGroupMember", "Id": 13, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 2, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "CommandName": "Add-PnPAzureADGroupMember", "Id": 14, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3 + "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 3, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "CommandName": "Add-PnPAzureADGroupOwner", "Id": 15, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 1, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPAzureADGroupOwner", "Id": 16, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 2, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "CommandName": "Add-PnPAzureADGroupOwner", "Id": 17, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3 + "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 3, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Id": 18, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "Rank": 1 + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Rank": 1, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Id": 19, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "Rank": 2 + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Rank": 2, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" }, { - "CommandName": "Add-PnPContentType", "Id": 20, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "Rank": 1 + "CommandName": "Add-PnPContentType", + "Rank": 1, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" }, { - "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\"", - "Rank": 2 + "CommandName": "Add-PnPContentType", + "Rank": 2, + "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\"" }, { - "CommandName": "Add-PnPContentType", "Id": 22, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Rank": 3 + "CommandName": "Add-PnPContentType", + "Rank": 3, + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" }, { - "CommandName": "Add-PnPContentType", "Id": 23, - "Command": "Add-PnPContentType -Name \"Project Item\"", - "Rank": 4 + "CommandName": "Add-PnPContentType", + "Rank": 4, + "Command": "Add-PnPContentType -Name \"Project Item\"" }, { - "CommandName": "Add-PnPContentType", "Id": 24, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "Rank": 5 + "CommandName": "Add-PnPContentType", + "Rank": 5, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 25, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Rank": 1 + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 1, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 26, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Rank": 2 + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 2, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 27, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1 + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 1, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 28, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2 + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 2, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "CommandName": "Add-PnPContentTypeToList", "Id": 29, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Rank": 1 + "CommandName": "Add-PnPContentTypeToList", + "Rank": 1, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" }, { - "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`\"}\"", - "Rank": 1 + "CommandName": "Add-PnPCustomAction", + "Rank": 1, + "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`\"}\"" }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 31, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Rank": 1 + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 1, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 32, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity", - "Rank": 2 + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 2, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></Query>' -Fields 'Title','Choice' -IncludeSecurity" }, { - "CommandName": "Add-PnPDocumentSet", "Id": 33, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1 + "CommandName": "Add-PnPDocumentSet", + "Rank": 1, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" }, { - "CommandName": "Add-PnPEventReceiver", "Id": 34, - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "Rank": 1 + "CommandName": "Add-PnPEventReceiver", + "Rank": 1, + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" }, { - "CommandName": "Add-PnPEventReceiver", "Id": 35, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "Rank": 2 + "CommandName": "Add-PnPEventReceiver", + "Rank": 2, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" }, { - "CommandName": "Add-PnPEventReceiver", "Id": 36, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "Rank": 3 + "CommandName": "Add-PnPEventReceiver", + "Rank": 3, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site" }, { - "CommandName": "Add-PnPEventReceiver", "Id": 37, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "Rank": 4 + "CommandName": "Add-PnPEventReceiver", + "Rank": 4, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" }, { - "CommandName": "Add-PnPField", "Id": 38, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Rank": 1 + "CommandName": "Add-PnPField", + "Rank": 1, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { - "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\"", - "Rank": 2 + "CommandName": "Add-PnPField", + "Rank": 2, + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"" }, { - "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\"", - "Rank": 3 + "CommandName": "Add-PnPField", + "Rank": 3, + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"" }, { - "CommandName": "Add-PnPField", "Id": 41, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Rank": 4 + "CommandName": "Add-PnPField", + "Rank": 4, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { - "CommandName": "Add-PnPField", "Id": 42, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "Rank": 5 + "CommandName": "Add-PnPField", + "Rank": 5, + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { - "CommandName": "Add-PnPField", "Id": 43, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "Rank": 6 + "CommandName": "Add-PnPField", + "Rank": 6, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { - "CommandName": "Add-PnPFieldToContentType", "Id": 44, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1 + "CommandName": "Add-PnPFieldToContentType", + "Rank": 1, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "CommandName": "Add-PnPFile", "Id": 45, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Rank": 1 + "CommandName": "Add-PnPFile", + "Rank": 1, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { - "CommandName": "Add-PnPFile", "Id": 46, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Rank": 2 + "CommandName": "Add-PnPFile", + "Rank": 2, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { - "CommandName": "Add-PnPFile", "Id": 47, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", - "Rank": 3 + "CommandName": "Add-PnPFile", + "Rank": 3, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}" }, { - "CommandName": "Add-PnPFile", "Id": 48, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", - "Rank": 4 + "CommandName": "Add-PnPFile", + "Rank": 4, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}" }, { - "CommandName": "Add-PnPFile", "Id": 49, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", - "Rank": 5 + "CommandName": "Add-PnPFile", + "Rank": 5, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}" }, { - "CommandName": "Add-PnPFile", "Id": 50, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", - "Rank": 6 + "CommandName": "Add-PnPFile", + "Rank": 6, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}" }, { - "CommandName": "Add-PnPFile", "Id": 51, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7 + "CommandName": "Add-PnPFile", + "Rank": 7, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { - "CommandName": "Add-PnPFile", "Id": 52, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 8 + "CommandName": "Add-PnPFile", + "Rank": 8, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 53, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 1, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 54, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2 + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 2, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 55, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "Rank": 3 + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 3, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 56, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 1, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 57, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Rank": 2 + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 2, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { - "CommandName": "Add-PnPFileSharingInvite", "Id": 58, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1 + "CommandName": "Add-PnPFileSharingInvite", + "Rank": 1, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "CommandName": "Add-PnPFileSharingInvite", "Id": 59, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Rank": 2 + "CommandName": "Add-PnPFileSharingInvite", + "Rank": 2, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { - "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)", - "Rank": 3 + "CommandName": "Add-PnPFileSharingInvite", + "Rank": 3, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Id": 61, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Rank": 1 + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 1, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Id": 62, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "Rank": 2 + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 2, + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Id": 63, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "Rank": 3 + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 3, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Id": 64, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Rank": 4 + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 4, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Id": 65, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Rank": 5 + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 5, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { - "CommandName": "Add-PnPFileUserSharingLink", "Id": 66, - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Add-PnPFileUserSharingLink", + "Rank": 1, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "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\"", - "Rank": 2 + "CommandName": "Add-PnPFileUserSharingLink", + "Rank": 2, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "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", - "Rank": 1 + "CommandName": "Add-PnPFlowOwner", + "Rank": 1, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit" }, { - "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", - "Rank": 2 + "CommandName": "Add-PnPFlowOwner", + "Rank": 2, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView" }, { - "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", - "Rank": 3 + "CommandName": "Add-PnPFlowOwner", + "Rank": 3, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare" }, { - "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", - "Rank": 4 + "CommandName": "Add-PnPFlowOwner", + "Rank": 4, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit" }, { - "CommandName": "Add-PnPFolder", "Id": 72, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1 + "CommandName": "Add-PnPFolder", + "Rank": 1, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "CommandName": "Add-PnPFolder", "Id": 73, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2 + "CommandName": "Add-PnPFolder", + "Rank": 2, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { - "CommandName": "Add-PnPFolder", "Id": 74, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3 + "CommandName": "Add-PnPFolder", + "Rank": 3, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 75, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 1, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 76, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2 + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 2, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 77, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "Rank": 3 + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 3, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 78, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 1, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 79, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2 + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 2, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { - "CommandName": "Add-PnPFolderSharingInvite", "Id": 80, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1 + "CommandName": "Add-PnPFolderSharingInvite", + "Rank": 1, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "CommandName": "Add-PnPFolderSharingInvite", "Id": 81, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Rank": 2 + "CommandName": "Add-PnPFolderSharingInvite", + "Rank": 2, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { - "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)", - "Rank": 3 + "CommandName": "Add-PnPFolderSharingInvite", + "Rank": 3, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { - "CommandName": "Add-PnPFolderUserSharingLink", "Id": 83, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Add-PnPFolderUserSharingLink", + "Rank": 1, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "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\"", - "Rank": 2 + "CommandName": "Add-PnPFolderUserSharingLink", + "Rank": 2, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPGroupMember", "Id": 85, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1 + "CommandName": "Add-PnPGroupMember", + "Rank": 1, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "CommandName": "Add-PnPGroupMember", "Id": 86, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2 + "CommandName": "Add-PnPGroupMember", + "Rank": 2, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { - "CommandName": "Add-PnPHtmlPublishingPageLayout", "Id": 87, - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Rank": 1 + "CommandName": "Add-PnPHtmlPublishingPageLayout", + "Rank": 1, + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { - "CommandName": "Add-PnPHubSiteAssociation", "Id": 88, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Rank": 1 + "CommandName": "Add-PnPHubSiteAssociation", + "Rank": 1, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" }, { - "CommandName": "Add-PnPHubToHubAssociation", "Id": 89, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Rank": 1 + "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 1, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { - "CommandName": "Add-PnPHubToHubAssociation", "Id": 90, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "Rank": 2 + "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 2, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { - "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\"", - "Rank": 3 + "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 3, + "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\"" }, { - "CommandName": "Add-PnPJavaScriptBlock", "Id": 92, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site", - "Rank": 1 + "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 1, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site" }, { - "CommandName": "Add-PnPJavaScriptBlock", "Id": 93, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'", - "Rank": 2 + "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 2, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</script>'" }, { - "CommandName": "Add-PnPJavaScriptLink", "Id": 94, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Rank": 1 + "CommandName": "Add-PnPJavaScriptLink", + "Rank": 1, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" }, { - "CommandName": "Add-PnPJavaScriptLink", "Id": 95, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Rank": 2 + "CommandName": "Add-PnPJavaScriptLink", + "Rank": 2, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { - "CommandName": "Add-PnPListDesign", "Id": 96, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Rank": 1 + "CommandName": "Add-PnPListDesign", + "Rank": 1, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { - "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\"", - "Rank": 2 + "CommandName": "Add-PnPListDesign", + "Rank": 2, + "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\"" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 98, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Rank": 1 + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 1, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 99, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2 + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 2, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 100, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3 + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 3, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { - "CommandName": "Add-PnPListItem", "Id": 101, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1 + "CommandName": "Add-PnPListItem", + "Rank": 1, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "CommandName": "Add-PnPListItem", "Id": 102, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2 + "CommandName": "Add-PnPListItem", + "Rank": 2, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "CommandName": "Add-PnPListItem", "Id": 103, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Rank": 3 + "CommandName": "Add-PnPListItem", + "Rank": 3, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { - "CommandName": "Add-PnPListItem", "Id": 104, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Rank": 4 + "CommandName": "Add-PnPListItem", + "Rank": 4, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { - "CommandName": "Add-PnPListItem", "Id": 105, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Rank": 5 + "CommandName": "Add-PnPListItem", + "Rank": 5, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { - "CommandName": "Add-PnPListItemAttachment", "Id": 106, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Rank": 1 + "CommandName": "Add-PnPListItemAttachment", + "Rank": 1, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { - "CommandName": "Add-PnPListItemAttachment", "Id": 107, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 2 + "CommandName": "Add-PnPListItemAttachment", + "Rank": 2, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { - "CommandName": "Add-PnPListItemAttachment", "Id": 108, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Rank": 3 + "CommandName": "Add-PnPListItemAttachment", + "Rank": 3, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { - "CommandName": "Add-PnPListItemComment", "Id": 109, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Rank": 1 + "CommandName": "Add-PnPListItemComment", + "Rank": 1, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" }, { - "CommandName": "Add-PnPMasterPage", "Id": 110, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Rank": 1 + "CommandName": "Add-PnPMasterPage", + "Rank": 1, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", "Id": 111, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", "Id": 112, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Id": 113, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Id": 114, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 115, - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "Rank": 1 + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 116, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Rank": 2 + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 117, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Rank": 3 + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 3, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { - "CommandName": "Add-PnPNavigationNode", "Id": 118, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Rank": 1 + "CommandName": "Add-PnPNavigationNode", + "Rank": 1, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { - "CommandName": "Add-PnPNavigationNode", "Id": 119, - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "Rank": 2 + "CommandName": "Add-PnPNavigationNode", + "Rank": 2, + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" }, { - "CommandName": "Add-PnPNavigationNode", "Id": 120, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Rank": 3 + "CommandName": "Add-PnPNavigationNode", + "Rank": 3, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" }, { - "CommandName": "Add-PnPNavigationNode", "Id": 121, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Rank": 4 + "CommandName": "Add-PnPNavigationNode", + "Rank": 4, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { - "CommandName": "Add-PnPNavigationNode", "Id": 122, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Rank": 5 + "CommandName": "Add-PnPNavigationNode", + "Rank": 5, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { - "CommandName": "Add-PnPNavigationNode", "Id": 123, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6 + "CommandName": "Add-PnPNavigationNode", + "Rank": 6, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { - "CommandName": "Add-PnPNavigationNode", "Id": 124, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Rank": 7 + "CommandName": "Add-PnPNavigationNode", + "Rank": 7, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { - "CommandName": "Add-PnPNavigationNode", "Id": 125, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Rank": 8 + "CommandName": "Add-PnPNavigationNode", + "Rank": 8, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { - "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 126, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Rank": 1 + "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 1, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { - "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\"", - "Rank": 2 + "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 2, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"" }, { - "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 128, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Rank": 3 + "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 3, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { - "CommandName": "Add-PnPOrgNewsSite", "Id": 129, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Rank": 1 + "CommandName": "Add-PnPOrgNewsSite", + "Rank": 1, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { - "CommandName": "Add-PnPPage", "Id": 130, - "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1 + "CommandName": "Add-PnPPage", + "Rank": 1, + "Command": "Add-PnPPage -Name \"NewPage\"" }, { - "CommandName": "Add-PnPPage", "Id": 131, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2 + "CommandName": "Add-PnPPage", + "Rank": 2, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { - "CommandName": "Add-PnPPage", "Id": 132, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3 + "CommandName": "Add-PnPPage", + "Rank": 3, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { - "CommandName": "Add-PnPPage", "Id": 133, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4 + "CommandName": "Add-PnPPage", + "Rank": 4, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { - "CommandName": "Add-PnPPage", "Id": 134, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5 + "CommandName": "Add-PnPPage", + "Rank": 5, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { - "CommandName": "Add-PnPPage", "Id": 135, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6 + "CommandName": "Add-PnPPage", + "Rank": 6, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { - "CommandName": "Add-PnPPage", "Id": 136, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7 + "CommandName": "Add-PnPPage", + "Rank": 7, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "CommandName": "Add-PnPPage", "Id": 137, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8 + "CommandName": "Add-PnPPage", + "Rank": 8, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { - "CommandName": "Add-PnPPage", "Id": 138, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9 + "CommandName": "Add-PnPPage", + "Rank": 9, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { - "CommandName": "Add-PnPPage", "Id": 139, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10 + "CommandName": "Add-PnPPage", + "Rank": 10, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "CommandName": "Add-PnPPageImageWebPart", "Id": 140, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1 + "CommandName": "Add-PnPPageImageWebPart", + "Rank": 1, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { - "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\"", - "Rank": 2 + "CommandName": "Add-PnPPageImageWebPart", + "Rank": 2, + "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\"" }, { - "CommandName": "Add-PnPPageSection", "Id": 142, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Rank": 1 + "CommandName": "Add-PnPPageSection", + "Rank": 1, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { - "CommandName": "Add-PnPPageSection", "Id": 143, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2 + "CommandName": "Add-PnPPageSection", + "Rank": 2, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { - "CommandName": "Add-PnPPageTextPart", "Id": 144, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1 + "CommandName": "Add-PnPPageTextPart", + "Rank": 1, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { - "CommandName": "Add-PnPPageTextPart", "Id": 145, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 2 + "CommandName": "Add-PnPPageTextPart", + "Rank": 2, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { - "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\"", - "Rank": 3 + "CommandName": "Add-PnPPageTextPart", + "Rank": 3, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"" }, { - "CommandName": "Add-PnPPageWebPart", "Id": 147, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Rank": 1 + "CommandName": "Add-PnPPageWebPart", + "Rank": 1, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { - "CommandName": "Add-PnPPageWebPart", "Id": 148, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2 + "CommandName": "Add-PnPPageWebPart", + "Rank": 2, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { - "CommandName": "Add-PnPPageWebPart", "Id": 149, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3 + "CommandName": "Add-PnPPageWebPart", + "Rank": 3, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { - "CommandName": "Add-PnPPlannerBucket", "Id": 150, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Rank": 1 + "CommandName": "Add-PnPPlannerBucket", + "Rank": 1, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { - "CommandName": "Add-PnPPlannerBucket", "Id": 151, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Rank": 2 + "CommandName": "Add-PnPPlannerBucket", + "Rank": 2, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { - "CommandName": "Add-PnPPlannerRoster", "Id": 152, - "Command": "Add-PnPPlannerRoster", - "Rank": 1 + "CommandName": "Add-PnPPlannerRoster", + "Rank": 1, + "Command": "Add-PnPPlannerRoster" }, { - "CommandName": "Add-PnPPlannerRosterMember", "Id": 153, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Add-PnPPlannerRosterMember", + "Rank": 1, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPPlannerTask", "Id": 154, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 1 + "CommandName": "Add-PnPPlannerTask", + "Rank": 1, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "CommandName": "Add-PnPPlannerTask", "Id": 155, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 2 + "CommandName": "Add-PnPPlannerTask", + "Rank": 2, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "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\"", - "Rank": 3 + "CommandName": "Add-PnPPlannerTask", + "Rank": 3, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "CommandName": "Add-PnPPublishingImageRendition", "Id": 157, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1 + "CommandName": "Add-PnPPublishingImageRendition", + "Rank": 1, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "CommandName": "Add-PnPPublishingPage", "Id": 158, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1 + "CommandName": "Add-PnPPublishingPage", + "Rank": 1, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { - "CommandName": "Add-PnPPublishingPage", "Id": 159, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Rank": 2 + "CommandName": "Add-PnPPublishingPage", + "Rank": 2, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { - "CommandName": "Add-PnPPublishingPageLayout", "Id": 160, - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Rank": 1 + "CommandName": "Add-PnPPublishingPageLayout", + "Rank": 1, + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { - "CommandName": "Add-PnPRoleDefinition", "Id": 161, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Rank": 1 + "CommandName": "Add-PnPRoleDefinition", + "Rank": 1, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { - "CommandName": "Add-PnPRoleDefinition", "Id": 162, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2 + "CommandName": "Add-PnPRoleDefinition", + "Rank": 2, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { - "CommandName": "Add-PnPRoleDefinition", "Id": 163, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3 + "CommandName": "Add-PnPRoleDefinition", + "Rank": 3, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 164, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 1, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 165, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2 + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 2, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 166, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3 + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 3, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 167, - "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1 + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1, + "Command": "Add-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 168, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2 + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 2, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "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", - "Rank": 1 + "CommandName": "Add-PnPSiteDesign", + "Rank": 1, + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite" }, { - "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", - "Rank": 2 + "CommandName": "Add-PnPSiteDesign", + "Rank": 2, + "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" }, { - "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\"", - "Rank": 3 + "CommandName": "Add-PnPSiteDesign", + "Rank": 3, + "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\"" }, { - "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 172, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Rank": 1 + "CommandName": "Add-PnPSiteDesignFromWeb", + "Rank": 1, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { - "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 173, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2 + "CommandName": "Add-PnPSiteDesignFromWeb", + "Rank": 2, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "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", - "Rank": 3 + "CommandName": "Add-PnPSiteDesignFromWeb", + "Rank": 3, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png" }, { - "CommandName": "Add-PnPSiteDesignTask", "Id": 175, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1 + "CommandName": "Add-PnPSiteDesignTask", + "Rank": 1, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "CommandName": "Add-PnPSiteDesignTask", "Id": 176, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 2 + "CommandName": "Add-PnPSiteDesignTask", + "Rank": 2, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "CommandName": "Add-PnPSiteScript", "Id": 177, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Rank": 1 + "CommandName": "Add-PnPSiteScript", + "Rank": 1, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" }, { - "CommandName": "Add-PnPSiteScriptPackage", "Id": 178, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Rank": 1 + "CommandName": "Add-PnPSiteScriptPackage", + "Rank": 1, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" }, { - "CommandName": "Add-PnPSiteTemplate", "Id": 179, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Rank": 1 + "CommandName": "Add-PnPSiteTemplate", + "Rank": 1, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { - "CommandName": "Add-PnPStoredCredential", "Id": 180, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Rank": 1 + "CommandName": "Add-PnPStoredCredential", + "Rank": 1, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { - "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)", - "Rank": 2 + "CommandName": "Add-PnPStoredCredential", + "Rank": 2, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "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\"", - "Rank": 3 + "CommandName": "Add-PnPStoredCredential", + "Rank": 3, + "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\"" }, { - "CommandName": "Add-PnPTaxonomyField", "Id": 183, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Rank": 1 + "CommandName": "Add-PnPTaxonomyField", + "Rank": 1, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { - "CommandName": "Add-PnPTaxonomyField", "Id": 184, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Rank": 2 + "CommandName": "Add-PnPTaxonomyField", + "Rank": 2, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { - "CommandName": "Add-PnPTeamsChannel", "Id": 185, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Rank": 1 + "CommandName": "Add-PnPTeamsChannel", + "Rank": 1, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { - "CommandName": "Add-PnPTeamsChannel", "Id": 186, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Rank": 2 + "CommandName": "Add-PnPTeamsChannel", + "Rank": 2, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { - "CommandName": "Add-PnPTeamsChannel", "Id": 187, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Rank": 3 + "CommandName": "Add-PnPTeamsChannel", + "Rank": 3, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { - "CommandName": "Add-PnPTeamsChannel", "Id": 188, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Rank": 4 + "CommandName": "Add-PnPTeamsChannel", + "Rank": 4, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { - "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", - "Rank": 1 + "CommandName": "Add-PnpTeamsChannelUser", + "Rank": 1, + "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner" }, { - "CommandName": "Add-PnpTeamsChannelUser", "Id": 190, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Rank": 2 + "CommandName": "Add-PnpTeamsChannelUser", + "Rank": 2, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" }, { - "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\"", - "Rank": 1 + "CommandName": "Add-PnPTeamsTab", + "Rank": 1, + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"" }, { - "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\"", - "Rank": 2 + "CommandName": "Add-PnPTeamsTab", + "Rank": 2, + "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\"" }, { - "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\"", - "Rank": 3 + "CommandName": "Add-PnPTeamsTab", + "Rank": 3, + "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\"" }, { - "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", - "Rank": 4 + "CommandName": "Add-PnPTeamsTab", + "Rank": 4, + "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" }, { - "CommandName": "Add-PnPTeamsTeam", "Id": 195, - "Command": "Add-PnPTeamsTeam", - "Rank": 1 + "CommandName": "Add-PnPTeamsTeam", + "Rank": 1, + "Command": "Add-PnPTeamsTeam" }, { - "CommandName": "Add-PnPTeamsUser", "Id": 196, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1 + "CommandName": "Add-PnPTeamsUser", + "Rank": 1, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "CommandName": "Add-PnPTeamsUser", "Id": 197, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2 + "CommandName": "Add-PnPTeamsUser", + "Rank": 2, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "CommandName": "Add-PnPTeamsUser", "Id": 198, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Rank": 3 + "CommandName": "Add-PnPTeamsUser", + "Rank": 3, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { - "CommandName": "Add-PnPTeamsUser", "Id": 199, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Rank": 4 + "CommandName": "Add-PnPTeamsUser", + "Rank": 4, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { - "CommandName": "Add-PnPTenantCdnOrigin", "Id": 200, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1 + "CommandName": "Add-PnPTenantCdnOrigin", + "Rank": 1, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "CommandName": "Add-PnPTenantSequence", "Id": 201, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1 + "CommandName": "Add-PnPTenantSequence", + "Rank": 1, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { - "CommandName": "Add-PnPTenantSequenceSite", "Id": 202, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1 + "CommandName": "Add-PnPTenantSequenceSite", + "Rank": 1, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { - "CommandName": "Add-PnPTenantSequenceSubSite", "Id": 203, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1 + "CommandName": "Add-PnPTenantSequenceSubSite", + "Rank": 1, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { - "CommandName": "Add-PnPTermToTerm", "Id": 204, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Rank": 1 + "CommandName": "Add-PnPTermToTerm", + "Rank": 1, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" }, { - "CommandName": "Add-PnPView", "Id": 205, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Rank": 1 + "CommandName": "Add-PnPView", + "Rank": 1, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { - "CommandName": "Add-PnPView", "Id": 206, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Rank": 2 + "CommandName": "Add-PnPView", + "Rank": 2, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { - "CommandName": "Add-PnPView", "Id": 207, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", - "Rank": 3 + "CommandName": "Add-PnPView", + "Rank": 3, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"" }, { - "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\"", - "Rank": 1 + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Rank": 1, + "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\"" }, { - "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\"", - "Rank": 2 + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Rank": 2, + "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\"" }, { - "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\"", - "Rank": 3 + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Rank": 3, + "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\"" }, { - "CommandName": "Add-PnPWebhookSubscription", "Id": 211, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1 + "CommandName": "Add-PnPWebhookSubscription", + "Rank": 1, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "CommandName": "Add-PnPWebhookSubscription", "Id": 212, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Rank": 2 + "CommandName": "Add-PnPWebhookSubscription", + "Rank": 2, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "CommandName": "Add-PnPWebhookSubscription", "Id": 213, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "Rank": 3 + "CommandName": "Add-PnPWebhookSubscription", + "Rank": 3, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" }, { - "CommandName": "Add-PnPWebPartToWebPartPage", "Id": 214, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 1 + "CommandName": "Add-PnPWebPartToWebPartPage", + "Rank": 1, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1" }, { - "CommandName": "Add-PnPWebPartToWebPartPage", "Id": 215, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 2 + "CommandName": "Add-PnPWebPartToWebPartPage", + "Rank": 2, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { - "CommandName": "Add-PnPWebPartToWikiPage", "Id": 216, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "Rank": 1 + "CommandName": "Add-PnPWebPartToWikiPage", + "Rank": 1, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1" }, { - "CommandName": "Add-PnPWebPartToWikiPage", "Id": 217, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Rank": 2 + "CommandName": "Add-PnPWebPartToWikiPage", + "Rank": 2, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" }, { - "CommandName": "Add-PnPWikiPage", "Id": 218, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Rank": 1 + "CommandName": "Add-PnPWikiPage", + "Rank": 1, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { - "CommandName": "Clear-PnPAzureADGroupMember", "Id": 219, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1 + "CommandName": "Clear-PnPAzureADGroupMember", + "Rank": 1, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { - "CommandName": "Clear-PnPAzureADGroupOwner", "Id": 220, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1 + "CommandName": "Clear-PnPAzureADGroupOwner", + "Rank": 1, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { - "CommandName": "Clear-PnPDefaultColumnValues", "Id": 221, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1 + "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 1, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { - "CommandName": "Clear-PnPDefaultColumnValues", "Id": 222, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2 + "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 2, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { - "CommandName": "Clear-PnPListItemAsRecord", "Id": 223, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "CommandName": "Clear-PnPListItemAsRecord", + "Rank": 1, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Id": 224, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1 + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Id": 225, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1 + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { - "CommandName": "Clear-PnpRecycleBinItem", "Id": 226, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1 + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 1, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "CommandName": "Clear-PnpRecycleBinItem", "Id": 227, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2 + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 2, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { - "CommandName": "Clear-PnpRecycleBinItem", "Id": 228, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3 + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 3, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Id": 229, - "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1 + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1, + "Command": "Clear-PnPTenantAppCatalogUrl" }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 230, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 1, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 231, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2 + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 2, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "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\"", - "Rank": 1 + "CommandName": "Connect-PnPOnline", + "Rank": 1, + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"" }, { - "CommandName": "Convert-PnPFile", "Id": 233, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", - "Rank": 1 + "CommandName": "Convert-PnPFile", + "Rank": 1, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream" }, { - "CommandName": "Convert-PnPFile", "Id": 234, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", - "Rank": 2 + "CommandName": "Convert-PnPFile", + "Rank": 2, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"" }, { - "CommandName": "Convert-PnPFile", "Id": 235, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", - "Rank": 3 + "CommandName": "Convert-PnPFile", + "Rank": 3, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"" }, { - "CommandName": "Convert-PnPFile", "Id": 236, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", - "Rank": 4 + "CommandName": "Convert-PnPFile", + "Rank": 4, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force" }, { - "CommandName": "Convert-PnPFile", "Id": 237, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", - "Rank": 5 + "CommandName": "Convert-PnPFile", + "Rank": 5, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"" }, { - "CommandName": "Convert-PnPFile", "Id": 238, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", - "Rank": 6 + "CommandName": "Convert-PnPFile", + "Rank": 6, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"" }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 239, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1 + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 1, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 240, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2 + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 2, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "CommandName": "Convert-PnPSiteTemplate", "Id": 241, - "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1 + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 1, + "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "CommandName": "Convert-PnPSiteTemplate", "Id": 242, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2 + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 2, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "CommandName": "Convert-PnPSiteTemplate", "Id": 243, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3 + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 3, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 244, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1 + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 1, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 245, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2 + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 2, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 246, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1 + "CommandName": "ConvertTo-PnPPage", + "Rank": 1, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 247, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2 + "CommandName": "ConvertTo-PnPPage", + "Rank": 2, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 248, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3 + "CommandName": "ConvertTo-PnPPage", + "Rank": 3, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 249, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4 + "CommandName": "ConvertTo-PnPPage", + "Rank": 4, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 250, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 5 + "CommandName": "ConvertTo-PnPPage", + "Rank": 5, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 251, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Rank": 6 + "CommandName": "ConvertTo-PnPPage", + "Rank": 6, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 252, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7 + "CommandName": "ConvertTo-PnPPage", + "Rank": 7, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 253, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite", - "Rank": 8 + "CommandName": "ConvertTo-PnPPage", + "Rank": 8, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 254, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9 + "CommandName": "ConvertTo-PnPPage", + "Rank": 9, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 255, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Rank": 10 + "CommandName": "ConvertTo-PnPPage", + "Rank": 10, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 256, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11 + "CommandName": "ConvertTo-PnPPage", + "Rank": 11, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 257, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 12 + "CommandName": "ConvertTo-PnPPage", + "Rank": 12, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 258, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 13 + "CommandName": "ConvertTo-PnPPage", + "Rank": 13, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "CommandName": "ConvertTo-PnPPage", "Id": 259, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Rank": 14 + "CommandName": "ConvertTo-PnPPage", + "Rank": 14, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "CommandName": "Copy-PnPFile", "Id": 260, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1 + "CommandName": "Copy-PnPFile", + "Rank": 1, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFile", "Id": 261, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2 + "CommandName": "Copy-PnPFile", + "Rank": 2, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "CommandName": "Copy-PnPFile", "Id": 262, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3 + "CommandName": "Copy-PnPFile", + "Rank": 3, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "CommandName": "Copy-PnPFile", "Id": 263, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4 + "CommandName": "Copy-PnPFile", + "Rank": 4, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFile", "Id": 264, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5 + "CommandName": "Copy-PnPFile", + "Rank": 5, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "CommandName": "Copy-PnPFile", "Id": 265, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6 + "CommandName": "Copy-PnPFile", + "Rank": 6, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "CommandName": "Copy-PnPFile", "Id": 266, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7 + "CommandName": "Copy-PnPFile", + "Rank": 7, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "CommandName": "Copy-PnPFile", "Id": 267, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8 + "CommandName": "Copy-PnPFile", + "Rank": 8, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFile", "Id": 268, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9 + "CommandName": "Copy-PnPFile", + "Rank": 9, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFile", "Id": 269, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10 + "CommandName": "Copy-PnPFile", + "Rank": 10, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "CommandName": "Copy-PnPFolder", "Id": 270, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1 + "CommandName": "Copy-PnPFolder", + "Rank": 1, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFolder", "Id": 271, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2 + "CommandName": "Copy-PnPFolder", + "Rank": 2, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "CommandName": "Copy-PnPFolder", "Id": 272, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3 + "CommandName": "Copy-PnPFolder", + "Rank": 3, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "CommandName": "Copy-PnPFolder", "Id": 273, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4 + "CommandName": "Copy-PnPFolder", + "Rank": 4, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFolder", "Id": 274, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5 + "CommandName": "Copy-PnPFolder", + "Rank": 5, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "CommandName": "Copy-PnPFolder", "Id": 275, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6 + "CommandName": "Copy-PnPFolder", + "Rank": 6, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "CommandName": "Copy-PnPFolder", "Id": 276, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7 + "CommandName": "Copy-PnPFolder", + "Rank": 7, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "CommandName": "Copy-PnPFolder", "Id": 277, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8 + "CommandName": "Copy-PnPFolder", + "Rank": 8, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFolder", "Id": 278, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9 + "CommandName": "Copy-PnPFolder", + "Rank": 9, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFolder", "Id": 279, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10 + "CommandName": "Copy-PnPFolder", + "Rank": 10, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "CommandName": "Copy-PnPItemProxy", "Id": 280, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1 + "CommandName": "Copy-PnPItemProxy", + "Rank": 1, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "CommandName": "Copy-PnPList", "Id": 281, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1 + "CommandName": "Copy-PnPList", + "Rank": 1, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "CommandName": "Copy-PnPList", "Id": 282, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Rank": 2 + "CommandName": "Copy-PnPList", + "Rank": 2, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "CommandName": "Copy-PnPList", "Id": 283, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Rank": 3 + "CommandName": "Copy-PnPList", + "Rank": 3, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "CommandName": "Copy-PnPList", "Id": 284, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "Rank": 4 + "CommandName": "Copy-PnPList", + "Rank": 4, + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { - "CommandName": "Copy-PnPTeamsTeam", "Id": 285, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Rank": 1 + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 1, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "CommandName": "Copy-PnPTeamsTeam", "Id": 286, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Rank": 2 + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 2, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "CommandName": "Copy-PnPTeamsTeam", "Id": 287, - "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", - "Rank": 3 + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 3, + "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" }, { - "CommandName": "Copy-PnPTeamsTeam", "Id": 288, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "Rank": 4 + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 4, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "CommandName": "Disable-PnPFeature", "Id": 289, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Disable-PnPFeature", + "Rank": 1, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Disable-PnPFeature", "Id": 290, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2 + "CommandName": "Disable-PnPFeature", + "Rank": 2, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "CommandName": "Disable-PnPFeature", "Id": 291, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3 + "CommandName": "Disable-PnPFeature", + "Rank": 3, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "CommandName": "Disable-PnPPageScheduling", "Id": 292, - "Command": "Disable-PnPPageScheduling", - "Rank": 1 + "CommandName": "Disable-PnPPageScheduling", + "Rank": 1, + "Command": "Disable-PnPPageScheduling" }, { - "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 293, - "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1 + "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 1, + "Command": "Disable-PnPPowerShellTelemetry" }, { - "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 294, - "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2 + "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 2, + "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Id": 295, - "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1, + "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "CommandName": "Disable-PnPSiteClassification", "Id": 296, - "Command": "Disable-PnPSiteClassification", - "Rank": 1 + "CommandName": "Disable-PnPSiteClassification", + "Rank": 1, + "Command": "Disable-PnPSiteClassification" }, { - "CommandName": "Disconnect-PnPOnline", "Id": 297, - "Command": "Disconnect-PnPOnline", - "Rank": 1 + "CommandName": "Disconnect-PnPOnline", + "Rank": 1, + "Command": "Disconnect-PnPOnline" }, { - "CommandName": "Enable-PnPCommSite", "Id": 298, - "Command": "Enable-PnPCommSite", - "Rank": 1 + "CommandName": "Enable-PnPCommSite", + "Rank": 1, + "Command": "Enable-PnPCommSite" }, { - "CommandName": "Enable-PnPCommSite", "Id": 299, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2 + "CommandName": "Enable-PnPCommSite", + "Rank": 2, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "CommandName": "Enable-PnPFeature", "Id": 300, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Enable-PnPFeature", + "Rank": 1, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Enable-PnPFeature", "Id": 301, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2 + "CommandName": "Enable-PnPFeature", + "Rank": 2, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "CommandName": "Enable-PnPFeature", "Id": 302, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3 + "CommandName": "Enable-PnPFeature", + "Rank": 3, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "CommandName": "Enable-PnPPageScheduling", "Id": 303, - "Command": "Enable-PnPPageScheduling", - "Rank": 1 + "CommandName": "Enable-PnPPageScheduling", + "Rank": 1, + "Command": "Enable-PnPPageScheduling" }, { - "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 304, - "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1 + "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 1, + "Command": "Enable-PnPPowerShellTelemetry" }, { - "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 305, - "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2 + "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 2, + "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "CommandName": "Enable-PnPSiteClassification", "Id": 306, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1 + "CommandName": "Enable-PnPSiteClassification", + "Rank": 1, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "CommandName": "Enable-PnPSiteClassification", "Id": 307, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 2 + "CommandName": "Enable-PnPSiteClassification", + "Rank": 2, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "CommandName": "Export-PnPListToSiteTemplate", "Id": 308, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1 + "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 1, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "CommandName": "Export-PnPListToSiteTemplate", "Id": 309, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2 + "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 2, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "CommandName": "Export-PnPPage", "Id": 310, - "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1 + "CommandName": "Export-PnPPage", + "Rank": 1, + "Command": "Export-PnPPage -Identity Home.aspx" }, { - "CommandName": "Export-PnPPageMapping", "Id": 311, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1 + "CommandName": "Export-PnPPageMapping", + "Rank": 1, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "CommandName": "Export-PnPPageMapping", "Id": 312, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2 + "CommandName": "Export-PnPPageMapping", + "Rank": 2, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "CommandName": "Export-PnPPageMapping", "Id": 313, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3 + "CommandName": "Export-PnPPageMapping", + "Rank": 3, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "CommandName": "Export-PnPTaxonomy", "Id": 314, - "Command": "Export-PnPTaxonomy", - "Rank": 1 + "CommandName": "Export-PnPTaxonomy", + "Rank": 1, + "Command": "Export-PnPTaxonomy" }, { - "CommandName": "Export-PnPTaxonomy", "Id": 315, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2 + "CommandName": "Export-PnPTaxonomy", + "Rank": 2, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "CommandName": "Export-PnPTaxonomy", "Id": 316, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3 + "CommandName": "Export-PnPTaxonomy", + "Rank": 3, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "CommandName": "Export-PnPTaxonomy", "Id": 317, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Rank": 4 + "CommandName": "Export-PnPTaxonomy", + "Rank": 4, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "CommandName": "Export-PnPTermGroupToXml", "Id": 318, - "Command": "Export-PnPTermGroupToXml", - "Rank": 1 + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 1, + "Command": "Export-PnPTermGroupToXml" }, { - "CommandName": "Export-PnPTermGroupToXml", "Id": 319, - "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2 + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 2, + "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "CommandName": "Export-PnPTermGroupToXml", "Id": 320, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3 + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 3, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "CommandName": "Export-PnPUserInfo", "Id": 321, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1 + "CommandName": "Export-PnPUserInfo", + "Rank": 1, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "CommandName": "Export-PnPUserInfo", "Id": 322, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2 + "CommandName": "Export-PnPUserInfo", + "Rank": 2, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { - "CommandName": "Export-PnPUserProfile", "Id": 323, - "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Rank": 1 + "CommandName": "Export-PnPUserProfile", + "Rank": 1, + "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "CommandName": "Export-PnPUserProfile", "Id": 324, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2 + "CommandName": "Export-PnPUserProfile", + "Rank": 2, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "CommandName": "Find-PnPFile", "Id": 325, - "Command": "Find-PnPFile -Match *.master", - "Rank": 1 + "CommandName": "Find-PnPFile", + "Rank": 1, + "Command": "Find-PnPFile -Match *.master" }, { - "CommandName": "Find-PnPFile", "Id": 326, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2 + "CommandName": "Find-PnPFile", + "Rank": 2, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "CommandName": "Find-PnPFile", "Id": 327, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3 + "CommandName": "Find-PnPFile", + "Rank": 3, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "CommandName": "Get-PnPAccessToken", "Id": 328, - "Command": "Get-PnPAccessToken", - "Rank": 1 + "CommandName": "Get-PnPAccessToken", + "Rank": 1, + "Command": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAccessToken", "Id": 329, - "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2 + "CommandName": "Get-PnPAccessToken", + "Rank": 2, + "Command": "Get-PnPAccessToken -Decoded" }, { - "CommandName": "Get-PnPAccessToken", "Id": 330, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3 + "CommandName": "Get-PnPAccessToken", + "Rank": 3, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "CommandName": "Get-PnPAccessToken", "Id": 331, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4 + "CommandName": "Get-PnPAccessToken", + "Rank": 4, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "CommandName": "Get-PnPAccessToken", "Id": 332, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5 + "CommandName": "Get-PnPAccessToken", + "Rank": 5, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "CommandName": "Get-PnPAlert", "Id": 333, - "Command": "Get-PnPAlert", - "Rank": 1 + "CommandName": "Get-PnPAlert", + "Rank": 1, + "Command": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", "Id": 334, - "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2 + "CommandName": "Get-PnPAlert", + "Rank": 2, + "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "CommandName": "Get-PnPAlert", "Id": 335, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3 + "CommandName": "Get-PnPAlert", + "Rank": 3, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "CommandName": "Get-PnPAlert", "Id": 336, - "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4 + "CommandName": "Get-PnPAlert", + "Rank": 4, + "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "CommandName": "Get-PnPAlert", "Id": 337, - "Command": "Get-PnPAlert -AllUsers", - "Rank": 5 + "CommandName": "Get-PnPAlert", + "Rank": 5, + "Command": "Get-PnPAlert -AllUsers" }, { - "CommandName": "Get-PnPAlert", "Id": 338, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6 + "CommandName": "Get-PnPAlert", + "Rank": 6, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "CommandName": "Get-PnPApp", "Id": 339, - "Command": "Get-PnPApp", - "Rank": 1 + "CommandName": "Get-PnPApp", + "Rank": 1, + "Command": "Get-PnPApp" }, { - "CommandName": "Get-PnPApp", "Id": 340, - "Command": "Get-PnPApp -Scope Site", - "Rank": 2 + "CommandName": "Get-PnPApp", + "Rank": 2, + "Command": "Get-PnPApp -Scope Site" }, { - "CommandName": "Get-PnPApp", "Id": 341, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3 + "CommandName": "Get-PnPApp", + "Rank": 3, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "CommandName": "Get-PnPAppErrors", "Id": 342, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1 + "CommandName": "Get-PnPAppErrors", + "Rank": 1, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "CommandName": "Get-PnPAppErrors", "Id": 343, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Rank": 2 + "CommandName": "Get-PnPAppErrors", + "Rank": 2, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "CommandName": "Get-PnPAppInfo", "Id": 344, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1 + "CommandName": "Get-PnPAppInfo", + "Rank": 1, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "CommandName": "Get-PnPAppInfo", "Id": 345, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2 + "CommandName": "Get-PnPAppInfo", + "Rank": 2, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "CommandName": "Get-PnPAppInfo", "Id": 346, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3 + "CommandName": "Get-PnPAppInfo", + "Rank": 3, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "CommandName": "Get-PnPApplicationCustomizer", "Id": 347, - "Command": "Get-PnPApplicationCustomizer", - "Rank": 1 + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 1, + "Command": "Get-PnPApplicationCustomizer" }, { - "CommandName": "Get-PnPApplicationCustomizer", "Id": 348, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2 + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 2, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "CommandName": "Get-PnPApplicationCustomizer", "Id": 349, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3 + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 3, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "CommandName": "Get-PnPAuditing", "Id": 350, - "Command": "Get-PnPAuditing", - "Rank": 1 + "CommandName": "Get-PnPAuditing", + "Rank": 1, + "Command": "Get-PnPAuditing" }, { - "CommandName": "Get-PnPAuthenticationRealm", "Id": 351, - "Command": "Get-PnPAuthenticationRealm", - "Rank": 1 + "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 1, + "Command": "Get-PnPAuthenticationRealm" }, { - "CommandName": "Get-PnPAuthenticationRealm", "Id": 352, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2 + "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 2, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "CommandName": "Get-PnPAvailableLanguage", "Id": 353, - "Command": "Get-PnPAvailableLanguage", - "Rank": 1 + "CommandName": "Get-PnPAvailableLanguage", + "Rank": 1, + "Command": "Get-PnPAvailableLanguage" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 354, - "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1 + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 1, + "Command": "Get-PnPAvailableSensitivityLabel" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 355, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2 + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 2, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 356, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3 + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 3, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "CommandName": "Get-PnPAvailableSiteClassification", "Id": 357, - "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1 + "CommandName": "Get-PnPAvailableSiteClassification", + "Rank": 1, + "Command": "Get-PnPAvailableSiteClassification" }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Id": 358, - "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1 + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 1, + "Command": "Get-PnPAzureACSPrincipal" }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Id": 359, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2 + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 2, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Id": 360, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3 + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 3, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Id": 361, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4 + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 4, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 362, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 363, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 2, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 364, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 3, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 365, - "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1 + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1, + "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 366, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2 + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 2, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 367, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3 + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 3, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "CommandName": "Get-PnPAzureADApp", "Id": 368, - "Command": "Get-PnPAzureADApp", - "Rank": 1 + "CommandName": "Get-PnPAzureADApp", + "Rank": 1, + "Command": "Get-PnPAzureADApp" }, { - "CommandName": "Get-PnPAzureADApp", "Id": 369, - "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2 + "CommandName": "Get-PnPAzureADApp", + "Rank": 2, + "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "CommandName": "Get-PnPAzureADApp", "Id": 370, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3 + "CommandName": "Get-PnPAzureADApp", + "Rank": 3, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "CommandName": "Get-PnPAzureADApp", "Id": 371, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4 + "CommandName": "Get-PnPAzureADApp", + "Rank": 4, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "CommandName": "Get-PnPAzureADAppPermission", "Id": 372, - "Command": "Get-PnPAzureADAppPermission", - "Rank": 1 + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 1, + "Command": "Get-PnPAzureADAppPermission" }, { - "CommandName": "Get-PnPAzureADAppPermission", "Id": 373, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2 + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 2, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "CommandName": "Get-PnPAzureADAppPermission", "Id": 374, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3 + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 3, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 375, - "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1 + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 1, + "Command": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 376, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2 + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 2, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 377, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3 + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 3, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 378, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4 + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 4, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 379, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5 + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 5, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "CommandName": "Get-PnPAzureADGroup", "Id": 380, - "Command": "Get-PnPAzureADGroup", - "Rank": 1 + "CommandName": "Get-PnPAzureADGroup", + "Rank": 1, + "Command": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroup", "Id": 381, - "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2 + "CommandName": "Get-PnPAzureADGroup", + "Rank": 2, + "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "CommandName": "Get-PnPAzureADGroup", "Id": 382, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3 + "CommandName": "Get-PnPAzureADGroup", + "Rank": 3, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "CommandName": "Get-PnPAzureADGroup", "Id": 383, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4 + "CommandName": "Get-PnPAzureADGroup", + "Rank": 4, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "CommandName": "Get-PnPAzureADGroup", "Id": 384, - "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5 + "CommandName": "Get-PnPAzureADGroup", + "Rank": 5, + "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "CommandName": "Get-PnPAzureADGroupMember", "Id": 385, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1 + "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 1, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "CommandName": "Get-PnPAzureADGroupMember", "Id": 386, - "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2 + "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 2, + "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "CommandName": "Get-PnPAzureADGroupOwner", "Id": 387, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1 + "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 1, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "CommandName": "Get-PnPAzureADGroupOwner", "Id": 388, - "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2 + "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 2, + "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 389, - "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1 + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 390, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2 + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 391, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3 + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 3, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 392, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4 + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 4, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 393, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5 + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 5, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 394, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1 + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 395, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2 + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 396, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1 + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 397, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2 + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "CommandName": "Get-PnPAzureADUser", "Id": 398, - "Command": "Get-PnPAzureADUser", - "Rank": 1 + "CommandName": "Get-PnPAzureADUser", + "Rank": 1, + "Command": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", "Id": 399, - "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2 + "CommandName": "Get-PnPAzureADUser", + "Rank": 2, + "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "CommandName": "Get-PnPAzureADUser", "Id": 400, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3 + "CommandName": "Get-PnPAzureADUser", + "Rank": 3, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "CommandName": "Get-PnPAzureADUser", "Id": 401, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4 + "CommandName": "Get-PnPAzureADUser", + "Rank": 4, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "CommandName": "Get-PnPAzureADUser", "Id": 402, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5 + "CommandName": "Get-PnPAzureADUser", + "Rank": 5, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "CommandName": "Get-PnPAzureADUser", "Id": 403, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6 + "CommandName": "Get-PnPAzureADUser", + "Rank": 6, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "CommandName": "Get-PnPAzureADUser", "Id": 404, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7 + "CommandName": "Get-PnPAzureADUser", + "Rank": 7, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "CommandName": "Get-PnPAzureADUser", "Id": 405, - "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8 + "CommandName": "Get-PnPAzureADUser", + "Rank": 8, + "Command": "Get-PnPAzureADUser -Delta" }, { - "CommandName": "Get-PnPAzureADUser", "Id": 406, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9 + "CommandName": "Get-PnPAzureADUser", + "Rank": 9, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "CommandName": "Get-PnPAzureADUser", "Id": 407, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10 + "CommandName": "Get-PnPAzureADUser", + "Rank": 10, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "CommandName": "Get-PnPAzureCertificate", "Id": 408, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1 + "CommandName": "Get-PnPAzureCertificate", + "Rank": 1, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "CommandName": "Get-PnPAzureCertificate", "Id": 409, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2 + "CommandName": "Get-PnPAzureCertificate", + "Rank": 2, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "CommandName": "Get-PnPAzureCertificate", "Id": 410, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3 + "CommandName": "Get-PnPAzureCertificate", + "Rank": 3, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "CommandName": "Get-PnPBrowserIdleSignout", "Id": 411, - "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1 + "CommandName": "Get-PnPBrowserIdleSignout", + "Rank": 1, + "Command": "Get-PnPBrowserIdleSignout" }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 412, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1 + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 1, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 413, - "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2 + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2, + "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 414, - "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1, + "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 415, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 2, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 416, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 3, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 417, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 4, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 418, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 5, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "CommandName": "Get-PnPChangeLog", "Id": 419, - "Command": "Get-PnPChangeLog", - "Rank": 1 + "CommandName": "Get-PnPChangeLog", + "Rank": 1, + "Command": "Get-PnPChangeLog" }, { - "CommandName": "Get-PnPChangeLog", "Id": 420, - "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2 + "CommandName": "Get-PnPChangeLog", + "Rank": 2, + "Command": "Get-PnPChangeLog -Nightly" }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 421, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1 + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 1, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 422, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Rank": 2 + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 2, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "CommandName": "Get-PnPContainer", "Id": 423, - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", - "Rank": 1 + "CommandName": "Get-PnPContainer", + "Rank": 1, + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996" }, { - "CommandName": "Get-PnPContainer", "Id": 424, - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", - "Rank": 2 + "CommandName": "Get-PnPContainer", + "Rank": 2, + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { - "CommandName": "Get-PnPContainer", "Id": 425, - "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", - "Rank": 3 + "CommandName": "Get-PnPContainer", + "Rank": 3, + "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" }, { - "CommandName": "Get-PnPContainerTypeConfiguration", "Id": 426, - "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", - "Rank": 1 + "CommandName": "Get-PnPContainerTypeConfiguration", + "Rank": 1, + "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996" }, { - "CommandName": "Get-PnPContentType", "Id": 427, - "Command": "Get-PnPContentType", - "Rank": 1 + "CommandName": "Get-PnPContentType", + "Rank": 1, + "Command": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentType", "Id": 428, - "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2 + "CommandName": "Get-PnPContentType", + "Rank": 2, + "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "CommandName": "Get-PnPContentType", "Id": 429, - "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3 + "CommandName": "Get-PnPContentType", + "Rank": 3, + "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "CommandName": "Get-PnPContentType", "Id": 430, - "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4 + "CommandName": "Get-PnPContentType", + "Rank": 4, + "Command": "Get-PnPContentType -List \"Documents\"" }, { - "CommandName": "Get-PnPContentType", "Id": 431, - "Command": "Get-PnPContentType -Includes \"SchemaXml\"", - "Rank": 5 + "CommandName": "Get-PnPContentType", + "Rank": 5, + "Command": "Get-PnPContentType -Includes \"SchemaXml\"" }, { - "CommandName": "Get-PnPContentTypePublishingStatus", "Id": 432, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1 + "CommandName": "Get-PnPContentTypePublishingStatus", + "Rank": 1, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "CommandName": "Get-PnPCustomAction", "Id": 433, - "Command": "Get-PnPCustomAction", - "Rank": 1 + "CommandName": "Get-PnPCustomAction", + "Rank": 1, + "Command": "Get-PnPCustomAction" }, { - "CommandName": "Get-PnPCustomAction", "Id": 434, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2 + "CommandName": "Get-PnPCustomAction", + "Rank": 2, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "CommandName": "Get-PnPCustomAction", "Id": 435, - "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3 + "CommandName": "Get-PnPCustomAction", + "Rank": 3, + "Command": "Get-PnPCustomAction -Scope web" }, { - "CommandName": "Get-PnPDeletedContainer", "Id": 436, - "Command": "Get-PnPDeletedContainer", - "Rank": 1 + "CommandName": "Get-PnPDeletedContainer", + "Rank": 1, + "Command": "Get-PnPDeletedContainer" }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 437, - "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1 + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1, + "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 438, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2 + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 2, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "CommandName": "Get-PnPDeletedTeam", "Id": 439, - "Command": "Get-PnPDeletedTeam", - "Rank": 1 + "CommandName": "Get-PnPDeletedTeam", + "Rank": 1, + "Command": "Get-PnPDeletedTeam" }, { - "CommandName": "Get-PnPDiagnostics", "Id": 440, - "Command": "Get-PnPDiagnostics", - "Rank": 1 + "CommandName": "Get-PnPDiagnostics", + "Rank": 1, + "Command": "Get-PnPDiagnostics" }, { - "CommandName": "Get-PnPDisableSpacesActivation", "Id": 441, - "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1 + "CommandName": "Get-PnPDisableSpacesActivation", + "Rank": 1, + "Command": "Get-PnPDisableSpacesActivation" }, { - "CommandName": "Get-PnPDocumentSetTemplate", "Id": 442, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1 + "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 1, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "CommandName": "Get-PnPDocumentSetTemplate", "Id": 443, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2 + "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 2, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "CommandName": "Get-PnPEventReceiver", "Id": 444, - "Command": "Get-PnPEventReceiver", - "Rank": 1 + "CommandName": "Get-PnPEventReceiver", + "Rank": 1, + "Command": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", "Id": 445, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2 + "CommandName": "Get-PnPEventReceiver", + "Rank": 2, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "CommandName": "Get-PnPEventReceiver", "Id": 446, - "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3 + "CommandName": "Get-PnPEventReceiver", + "Rank": 3, + "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "CommandName": "Get-PnPEventReceiver", "Id": 447, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4 + "CommandName": "Get-PnPEventReceiver", + "Rank": 4, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "CommandName": "Get-PnPEventReceiver", "Id": 448, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5 + "CommandName": "Get-PnPEventReceiver", + "Rank": 5, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "CommandName": "Get-PnPEventReceiver", "Id": 449, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6 + "CommandName": "Get-PnPEventReceiver", + "Rank": 6, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "CommandName": "Get-PnPEventReceiver", "Id": 450, - "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7 + "CommandName": "Get-PnPEventReceiver", + "Rank": 7, + "Command": "Get-PnPEventReceiver -Scope Site" }, { - "CommandName": "Get-PnPEventReceiver", "Id": 451, - "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8 + "CommandName": "Get-PnPEventReceiver", + "Rank": 8, + "Command": "Get-PnPEventReceiver -Scope Web" }, { - "CommandName": "Get-PnPEventReceiver", "Id": 452, - "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9 + "CommandName": "Get-PnPEventReceiver", + "Rank": 9, + "Command": "Get-PnPEventReceiver -Scope All" }, { - "CommandName": "Get-PnPException", "Id": 453, - "Command": "Get-PnPException", - "Rank": 1 + "CommandName": "Get-PnPException", + "Rank": 1, + "Command": "Get-PnPException" }, { - "CommandName": "Get-PnPException", "Id": 454, - "Command": "Get-PnPException -All", - "Rank": 2 + "CommandName": "Get-PnPException", + "Rank": 2, + "Command": "Get-PnPException -All" }, { - "CommandName": "Get-PnPExternalUser", "Id": 455, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1 + "CommandName": "Get-PnPExternalUser", + "Rank": 1, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "CommandName": "Get-PnPExternalUser", "Id": 456, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2 + "CommandName": "Get-PnPExternalUser", + "Rank": 2, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "CommandName": "Get-PnPFeature", "Id": 457, - "Command": "Get-PnPFeature", - "Rank": 1 + "CommandName": "Get-PnPFeature", + "Rank": 1, + "Command": "Get-PnPFeature" }, { - "CommandName": "Get-PnPFeature", "Id": 458, - "Command": "Get-PnPFeature -Scope Site", - "Rank": 2 + "CommandName": "Get-PnPFeature", + "Rank": 2, + "Command": "Get-PnPFeature -Scope Site" }, { - "CommandName": "Get-PnPFeature", "Id": 459, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3 + "CommandName": "Get-PnPFeature", + "Rank": 3, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "CommandName": "Get-PnPFeature", "Id": 460, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4 + "CommandName": "Get-PnPFeature", + "Rank": 4, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "CommandName": "Get-PnPField", "Id": 461, - "Command": "Get-PnPField", - "Rank": 1 + "CommandName": "Get-PnPField", + "Rank": 1, + "Command": "Get-PnPField" }, { - "CommandName": "Get-PnPField", "Id": 462, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2 + "CommandName": "Get-PnPField", + "Rank": 2, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "CommandName": "Get-PnPField", "Id": 463, - "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3 + "CommandName": "Get-PnPField", + "Rank": 3, + "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "CommandName": "Get-PnPFile", "Id": 464, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1 + "CommandName": "Get-PnPFile", + "Rank": 1, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "CommandName": "Get-PnPFile", "Id": 465, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Rank": 2 + "CommandName": "Get-PnPFile", + "Rank": 2, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "CommandName": "Get-PnPFile", "Id": 466, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Rank": 3 + "CommandName": "Get-PnPFile", + "Rank": 3, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "CommandName": "Get-PnPFile", "Id": 467, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Rank": 4 + "CommandName": "Get-PnPFile", + "Rank": 4, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "CommandName": "Get-PnPFile", "Id": 468, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Rank": 5 + "CommandName": "Get-PnPFile", + "Rank": 5, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "CommandName": "Get-PnPFile", "Id": 469, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Rank": 6 + "CommandName": "Get-PnPFile", + "Rank": 6, + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "CommandName": "Get-PnPFile", "Id": 470, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Rank": 7 + "CommandName": "Get-PnPFile", + "Rank": 7, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "CommandName": "Get-PnPFileAnalyticsData", "Id": 471, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1 + "CommandName": "Get-PnPFileAnalyticsData", + "Rank": 1, + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "CommandName": "Get-PnPFileAnalyticsData", "Id": 472, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays", - "Rank": 2 + "CommandName": "Get-PnPFileAnalyticsData", + "Rank": 2, + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays" }, { - "CommandName": "Get-PnPFileAnalyticsData", "Id": 473, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", - "Rank": 3 + "CommandName": "Get-PnPFileAnalyticsData", + "Rank": 3, + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { - "CommandName": "Get-PnPFileInFolder", "Id": 474, - "Command": "Get-PnPFileInFolder", - "Rank": 1 + "CommandName": "Get-PnPFileInFolder", + "Rank": 1, + "Command": "Get-PnPFileInFolder" }, { - "CommandName": "Get-PnPFileInFolder", "Id": 475, - "Command": "Get-PnPFileInFolder -Recurse", - "Rank": 2 + "CommandName": "Get-PnPFileInFolder", + "Rank": 2, + "Command": "Get-PnPFileInFolder -Recurse" }, { - "CommandName": "Get-PnPFileInFolder", "Id": 476, - "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPFileInFolder", + "Rank": 3, + "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"" }, { - "CommandName": "Get-PnPFileInFolder", "Id": 477, - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4 + "CommandName": "Get-PnPFileInFolder", + "Rank": 4, + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "CommandName": "Get-PnPFileInFolder", "Id": 478, - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", - "Rank": 5 + "CommandName": "Get-PnPFileInFolder", + "Rank": 5, + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { - "CommandName": "Get-PnPFileSharingLink", "Id": 479, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "CommandName": "Get-PnPFileSharingLink", + "Rank": 1, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "CommandName": "Get-PnPFileVersion", "Id": 480, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1 + "CommandName": "Get-PnPFileVersion", + "Rank": 1, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "CommandName": "Get-PnPFileVersion", "Id": 481, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2 + "CommandName": "Get-PnPFileVersion", + "Rank": 2, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "CommandName": "Get-PnPFlow", "Id": 482, - "Command": "Get-PnPFlow -AsAdmin", - "Rank": 1 + "CommandName": "Get-PnPFlow", + "Rank": 1, + "Command": "Get-PnPFlow -AsAdmin" }, { - "CommandName": "Get-PnPFlow", "Id": 483, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Rank": 2 + "CommandName": "Get-PnPFlow", + "Rank": 2, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "CommandName": "Get-PnPFlow", "Id": 484, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 3 + "CommandName": "Get-PnPFlow", + "Rank": 3, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "CommandName": "Get-PnPFlowOwner", "Id": 485, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Rank": 1 + "CommandName": "Get-PnPFlowOwner", + "Rank": 1, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "CommandName": "Get-PnPFolder", "Id": 486, - "Command": "Get-PnPFolder", - "Rank": 1 + "CommandName": "Get-PnPFolder", + "Rank": 1, + "Command": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolder", "Id": 487, - "Command": "Get-PnPFolder -CurrentWebRootFolder", - "Rank": 2 + "CommandName": "Get-PnPFolder", + "Rank": 2, + "Command": "Get-PnPFolder -CurrentWebRootFolder" }, { - "CommandName": "Get-PnPFolder", "Id": 488, - "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPFolder", + "Rank": 3, + "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "CommandName": "Get-PnPFolder", "Id": 489, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 4 + "CommandName": "Get-PnPFolder", + "Rank": 4, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "CommandName": "Get-PnPFolder", "Id": 490, - "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", - "Rank": 5 + "CommandName": "Get-PnPFolder", + "Rank": 5, + "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"" }, { - "CommandName": "Get-PnPFolder", "Id": 491, - "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 6 + "CommandName": "Get-PnPFolder", + "Rank": 6, + "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "CommandName": "Get-PnPFolderInFolder", "Id": 492, - "Command": "Get-PnPFolderInFolder", - "Rank": 1 + "CommandName": "Get-PnPFolderInFolder", + "Rank": 1, + "Command": "Get-PnPFolderInFolder" }, { - "CommandName": "Get-PnPFolderInFolder", "Id": 493, - "Command": "Get-PnPFolderInFolder -Recurse", - "Rank": 2 + "CommandName": "Get-PnPFolderInFolder", + "Rank": 2, + "Command": "Get-PnPFolderInFolder -Recurse" }, { - "CommandName": "Get-PnPFolderInFolder", "Id": 494, - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPFolderInFolder", + "Rank": 3, + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"" }, { - "CommandName": "Get-PnPFolderInFolder", "Id": 495, - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Rank": 4 + "CommandName": "Get-PnPFolderInFolder", + "Rank": 4, + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "CommandName": "Get-PnPFolderInFolder", "Id": 496, - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Rank": 5 + "CommandName": "Get-PnPFolderInFolder", + "Rank": 5, + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "CommandName": "Get-PnPFolderInFolder", "Id": 497, - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", - "Rank": 6 + "CommandName": "Get-PnPFolderInFolder", + "Rank": 6, + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { - "CommandName": "Get-PnPFolderItem", "Id": 498, - "Command": "Get-PnPFolderItem", - "Rank": 1 + "CommandName": "Get-PnPFolderItem", + "Rank": 1, + "Command": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", "Id": 499, - "Command": "Get-PnPFolderItem -Recurse", - "Rank": 2 + "CommandName": "Get-PnPFolderItem", + "Rank": 2, + "Command": "Get-PnPFolderItem -Recurse" }, { - "CommandName": "Get-PnPFolderItem", "Id": 500, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPFolderItem", + "Rank": 3, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "CommandName": "Get-PnPFolderItem", "Id": 501, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4 + "CommandName": "Get-PnPFolderItem", + "Rank": 4, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "CommandName": "Get-PnPFolderItem", "Id": 502, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 5 + "CommandName": "Get-PnPFolderItem", + "Rank": 5, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "CommandName": "Get-PnPFolderItem", "Id": 503, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6 + "CommandName": "Get-PnPFolderItem", + "Rank": 6, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "CommandName": "Get-PnPFolderSharingLink", "Id": 504, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "CommandName": "Get-PnPFolderSharingLink", + "Rank": 1, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "CommandName": "Get-PnPFolderStorageMetric", "Id": 505, - "Command": "Get-PnPFolderStorageMetric", - "Rank": 1 + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 1, + "Command": "Get-PnPFolderStorageMetric" }, { - "CommandName": "Get-PnPFolderStorageMetric", "Id": 506, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2 + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 2, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "CommandName": "Get-PnPFolderStorageMetric", "Id": 507, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 3, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "CommandName": "Get-PnPFooter", "Id": 508, - "Command": "Get-PnPFooter", - "Rank": 1 + "CommandName": "Get-PnPFooter", + "Rank": 1, + "Command": "Get-PnPFooter" }, { - "CommandName": "Get-PnPGraphAccessToken", "Id": 509, - "Command": "Get-PnPGraphAccessToken", - "Rank": 1 + "CommandName": "Get-PnPGraphAccessToken", + "Rank": 1, + "Command": "Get-PnPGraphAccessToken" }, { - "CommandName": "Get-PnPGraphAccessToken", "Id": 510, - "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2 + "CommandName": "Get-PnPGraphAccessToken", + "Rank": 2, + "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "CommandName": "Get-PnPGraphSubscription", "Id": 511, - "Command": "Get-PnPGraphSubscription", - "Rank": 1 + "CommandName": "Get-PnPGraphSubscription", + "Rank": 1, + "Command": "Get-PnPGraphSubscription" }, { - "CommandName": "Get-PnPGraphSubscription", "Id": 512, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2 + "CommandName": "Get-PnPGraphSubscription", + "Rank": 2, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "CommandName": "Get-PnPGroup", "Id": 513, - "Command": "Get-PnPGroup", - "Rank": 1 + "CommandName": "Get-PnPGroup", + "Rank": 1, + "Command": "Get-PnPGroup" }, { - "CommandName": "Get-PnPGroup", "Id": 514, - "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2 + "CommandName": "Get-PnPGroup", + "Rank": 2, + "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "CommandName": "Get-PnPGroup", "Id": 515, - "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3 + "CommandName": "Get-PnPGroup", + "Rank": 3, + "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "CommandName": "Get-PnPGroupMember", "Id": 516, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1 + "CommandName": "Get-PnPGroupMember", + "Rank": 1, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "CommandName": "Get-PnPGroupMember", "Id": 517, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2 + "CommandName": "Get-PnPGroupMember", + "Rank": 2, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "CommandName": "Get-PnPGroupPermissions", "Id": 518, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1 + "CommandName": "Get-PnPGroupPermissions", + "Rank": 1, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "CommandName": "Get-PnPHideDefaultThemes", "Id": 519, - "Command": "Get-PnPHideDefaultThemes", - "Rank": 1 + "CommandName": "Get-PnPHideDefaultThemes", + "Rank": 1, + "Command": "Get-PnPHideDefaultThemes" }, { - "CommandName": "Get-PnPHomePage", "Id": 520, - "Command": "Get-PnPHomePage", - "Rank": 1 + "CommandName": "Get-PnPHomePage", + "Rank": 1, + "Command": "Get-PnPHomePage" }, { - "CommandName": "Get-PnPHomeSite", "Id": 521, - "Command": "Get-PnPHomeSite", - "Rank": 1 + "CommandName": "Get-PnPHomeSite", + "Rank": 1, + "Command": "Get-PnPHomeSite" }, { - "CommandName": "Get-PnPHomeSite", "Id": 522, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2 + "CommandName": "Get-PnPHomeSite", + "Rank": 2, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "CommandName": "Get-PnPHomeSite", "Id": 523, - "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3 + "CommandName": "Get-PnPHomeSite", + "Rank": 3, + "Command": "Get-PnPHomeSite -Detailed" }, { - "CommandName": "Get-PnPHubSite", "Id": 524, - "Command": "Get-PnPHubSite", - "Rank": 1 + "CommandName": "Get-PnPHubSite", + "Rank": 1, + "Command": "Get-PnPHubSite" }, { - "CommandName": "Get-PnPHubSite", "Id": 525, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2 + "CommandName": "Get-PnPHubSite", + "Rank": 2, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "CommandName": "Get-PnPHubSite", "Id": 526, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3 + "CommandName": "Get-PnPHubSite", + "Rank": 3, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "CommandName": "Get-PnPHubSiteChild", "Id": 527, - "Command": "Get-PnPHubSiteChild", - "Rank": 1 + "CommandName": "Get-PnPHubSiteChild", + "Rank": 1, + "Command": "Get-PnPHubSiteChild" }, { - "CommandName": "Get-PnPHubSiteChild", "Id": 528, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2 + "CommandName": "Get-PnPHubSiteChild", + "Rank": 2, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "CommandName": "Get-PnPInPlaceRecordsManagement", "Id": 529, - "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1 + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Rank": 1, + "Command": "Get-PnPInPlaceRecordsManagement" }, { - "CommandName": "Get-PnPIsSiteAliasAvailable", "Id": 530, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1 + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Rank": 1, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "CommandName": "Get-PnPJavaScriptLink", "Id": 531, - "Command": "Get-PnPJavaScriptLink", - "Rank": 1 + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 1, + "Command": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPJavaScriptLink", "Id": 532, - "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2 + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 2, + "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "CommandName": "Get-PnPJavaScriptLink", "Id": 533, - "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3 + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 3, + "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "CommandName": "Get-PnPJavaScriptLink", "Id": 534, - "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4 + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 4, + "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "CommandName": "Get-PnPJavaScriptLink", "Id": 535, - "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5 + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 5, + "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "CommandName": "Get-PnPKnowledgeHubSite", "Id": 536, - "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1 + "CommandName": "Get-PnPKnowledgeHubSite", + "Rank": 1, + "Command": "Get-PnPKnowledgeHubSite" }, { - "CommandName": "Get-PnPLabel", "Id": 537, - "Command": "Get-PnPLabel", - "Rank": 1 + "CommandName": "Get-PnPLabel", + "Rank": 1, + "Command": "Get-PnPLabel" }, { - "CommandName": "Get-PnPLabel", "Id": 538, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2 + "CommandName": "Get-PnPLabel", + "Rank": 2, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "CommandName": "Get-PnPLargeListOperationStatus", "Id": 539, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1 + "CommandName": "Get-PnPLargeListOperationStatus", + "Rank": 1, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "CommandName": "Get-PnPList", "Id": 540, - "Command": "Get-PnPList", - "Rank": 1 + "CommandName": "Get-PnPList", + "Rank": 1, + "Command": "Get-PnPList" }, { - "CommandName": "Get-PnPList", "Id": 541, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2 + "CommandName": "Get-PnPList", + "Rank": 2, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Get-PnPList", "Id": 542, - "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3 + "CommandName": "Get-PnPList", + "Rank": 3, + "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "CommandName": "Get-PnPList", "Id": 543, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4 + "CommandName": "Get-PnPList", + "Rank": 4, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "CommandName": "Get-PnPList", "Id": 544, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5 + "CommandName": "Get-PnPList", + "Rank": 5, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "CommandName": "Get-PnPListDesign", "Id": 545, - "Command": "Get-PnPListDesign", - "Rank": 1 + "CommandName": "Get-PnPListDesign", + "Rank": 1, + "Command": "Get-PnPListDesign" }, { - "CommandName": "Get-PnPListDesign", "Id": 546, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "CommandName": "Get-PnPListDesign", + "Rank": 2, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Get-PnPListDesign", "Id": 547, - "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3 + "CommandName": "Get-PnPListDesign", + "Rank": 3, + "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "CommandName": "Get-PnPListInformationRightsManagement", "Id": 548, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1 + "CommandName": "Get-PnPListInformationRightsManagement", + "Rank": 1, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "CommandName": "Get-PnPListItem", "Id": 549, - "Command": "Get-PnPListItem -List Tasks", - "Rank": 1 + "CommandName": "Get-PnPListItem", + "Rank": 1, + "Command": "Get-PnPListItem -List Tasks" }, { - "CommandName": "Get-PnPListItem", "Id": 550, - "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2 + "CommandName": "Get-PnPListItem", + "Rank": 2, + "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "CommandName": "Get-PnPListItem", "Id": 551, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3 + "CommandName": "Get-PnPListItem", + "Rank": 3, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "CommandName": "Get-PnPListItem", "Id": 552, - "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"", - "Rank": 4 + "CommandName": "Get-PnPListItem", + "Rank": 4, + "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"" }, { - "CommandName": "Get-PnPListItem", "Id": 553, - "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"", - "Rank": 5 + "CommandName": "Get-PnPListItem", + "Rank": 5, + "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"" }, { - "CommandName": "Get-PnPListItem", "Id": 554, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6 + "CommandName": "Get-PnPListItem", + "Rank": 6, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "CommandName": "Get-PnPListItem", "Id": 555, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Rank": 7 + "CommandName": "Get-PnPListItem", + "Rank": 7, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "CommandName": "Get-PnPListItem", "Id": 556, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Rank": 8 + "CommandName": "Get-PnPListItem", + "Rank": 8, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "CommandName": "Get-PnPListItem", "Id": 557, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9 + "CommandName": "Get-PnPListItem", + "Rank": 9, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "CommandName": "Get-PnPListItemAttachment", "Id": 558, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Rank": 1 + "CommandName": "Get-PnPListItemAttachment", + "Rank": 1, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "CommandName": "Get-PnPListItemAttachment", "Id": 559, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "Rank": 2 + "CommandName": "Get-PnPListItemAttachment", + "Rank": 2, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "CommandName": "Get-PnPListItemComment", "Id": 560, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1 + "CommandName": "Get-PnPListItemComment", + "Rank": 1, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "CommandName": "Get-PnPListItemPermission", "Id": 561, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1 + "CommandName": "Get-PnPListItemPermission", + "Rank": 1, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "CommandName": "Get-PnPListItemVersion", "Id": 562, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1 + "CommandName": "Get-PnPListItemVersion", + "Rank": 1, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "CommandName": "Get-PnPListPermissions", "Id": 563, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1 + "CommandName": "Get-PnPListPermissions", + "Rank": 1, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "CommandName": "Get-PnPListPermissions", "Id": 564, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2 + "CommandName": "Get-PnPListPermissions", + "Rank": 2, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "CommandName": "Get-PnPListRecordDeclaration", "Id": 565, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1 + "CommandName": "Get-PnPListRecordDeclaration", + "Rank": 1, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "CommandName": "Get-PnPMasterPage", "Id": 566, - "Command": "Get-PnPMasterPage", - "Rank": 1 + "CommandName": "Get-PnPMasterPage", + "Rank": 1, + "Command": "Get-PnPMasterPage" }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 567, - "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1 + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 1, + "Command": "Get-PnPMessageCenterAnnouncement" }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 568, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2 + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 2, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 569, - "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1, + "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 570, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 2, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Id": 571, - "Command": "Get-PnPMicrosoft365Group", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 1, + "Command": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Id": 572, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 2, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Id": 573, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 3, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Id": 574, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 4, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Id": 575, - "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 5, + "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Id": 576, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 6, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 577, - "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 578, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 579, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 580, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 581, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 582, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 583, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 584, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 585, - "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 586, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 587, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 588, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 589, - "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 590, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 591, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 592, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 593, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 594, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "CommandName": "Get-PnPNavigationNode", "Id": 595, - "Command": "Get-PnPNavigationNode", - "Rank": 1 + "CommandName": "Get-PnPNavigationNode", + "Rank": 1, + "Command": "Get-PnPNavigationNode" }, { - "CommandName": "Get-PnPNavigationNode", "Id": 596, - "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2 + "CommandName": "Get-PnPNavigationNode", + "Rank": 2, + "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "CommandName": "Get-PnPNavigationNode", "Id": 597, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3 + "CommandName": "Get-PnPNavigationNode", + "Rank": 3, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "CommandName": "Get-PnPOrgAssetsLibrary", "Id": 598, - "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1 + "CommandName": "Get-PnPOrgAssetsLibrary", + "Rank": 1, + "Command": "Get-PnPOrgAssetsLibrary" }, { - "CommandName": "Get-PnPOrgNewsSite", "Id": 599, - "Command": "Get-PnPOrgNewsSite", - "Rank": 1 + "CommandName": "Get-PnPOrgNewsSite", + "Rank": 1, + "Command": "Get-PnPOrgNewsSite" }, { - "CommandName": "Get-PnPPage", "Id": 600, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1 + "CommandName": "Get-PnPPage", + "Rank": 1, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "CommandName": "Get-PnPPage", "Id": 601, - "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2 + "CommandName": "Get-PnPPage", + "Rank": 2, + "Command": "Get-PnPPage \"MyPage\"" }, { - "CommandName": "Get-PnPPage", "Id": 602, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3 + "CommandName": "Get-PnPPage", + "Rank": 3, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "CommandName": "Get-PnPPage", "Id": 603, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4 + "CommandName": "Get-PnPPage", + "Rank": 4, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "CommandName": "Get-PnPPageComponent", "Id": 604, - "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1 + "CommandName": "Get-PnPPageComponent", + "Rank": 1, + "Command": "Get-PnPPageComponent -Page Home" }, { - "CommandName": "Get-PnPPageComponent", "Id": 605, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2 + "CommandName": "Get-PnPPageComponent", + "Rank": 2, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "CommandName": "Get-PnPPageComponent", "Id": 606, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3 + "CommandName": "Get-PnPPageComponent", + "Rank": 3, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "CommandName": "Get-PnPPlannerBucket", "Id": 607, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerBucket", + "Rank": 1, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "CommandName": "Get-PnPPlannerConfiguration", "Id": 608, - "Command": "Get-PnPPlannerConfiguration", - "Rank": 1 + "CommandName": "Get-PnPPlannerConfiguration", + "Rank": 1, + "Command": "Get-PnPPlannerConfiguration" }, { - "CommandName": "Get-PnPPlannerPlan", "Id": 609, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerPlan", + "Rank": 1, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "CommandName": "Get-PnPPlannerPlan", "Id": 610, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2 + "CommandName": "Get-PnPPlannerPlan", + "Rank": 2, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "CommandName": "Get-PnPPlannerPlan", "Id": 611, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3 + "CommandName": "Get-PnPPlannerPlan", + "Rank": 3, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "CommandName": "Get-PnPPlannerRosterMember", "Id": 612, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerRosterMember", + "Rank": 1, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "CommandName": "Get-PnPPlannerRosterPlan", "Id": 613, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 1, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "CommandName": "Get-PnPPlannerRosterPlan", "Id": 614, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2 + "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 2, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "CommandName": "Get-PnPPlannerTask", "Id": 615, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerTask", + "Rank": 1, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "CommandName": "Get-PnPPlannerTask", "Id": 616, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2 + "CommandName": "Get-PnPPlannerTask", + "Rank": 2, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "CommandName": "Get-PnPPlannerTask", "Id": 617, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3 + "CommandName": "Get-PnPPlannerTask", + "Rank": 3, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "CommandName": "Get-PnPPlannerUserPolicy", "Id": 618, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerUserPolicy", + "Rank": 1, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "CommandName": "Get-PnPPowerPlatformConnector", "Id": 619, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Rank": 1 + "CommandName": "Get-PnPPowerPlatformConnector", + "Rank": 1, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 620, - "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1 + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 1, + "Command": "Get-PnPPowerPlatformEnvironment" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 621, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2 + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 2, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 622, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3 + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 3, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "CommandName": "Get-PnPPowerPlatformSolution", "Id": 623, - "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)", - "Rank": 1 + "CommandName": "Get-PnPPowerPlatformSolution", + "Rank": 1, + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "CommandName": "Get-PnPPowerPlatformSolution", "Id": 624, - "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'", - "Rank": 2 + "CommandName": "Get-PnPPowerPlatformSolution", + "Rank": 2, + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'" }, { - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Id": 625, - "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1 + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, + "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "CommandName": "Get-PnPPropertyBag", "Id": 626, - "Command": "Get-PnPPropertyBag", - "Rank": 1 + "CommandName": "Get-PnPPropertyBag", + "Rank": 1, + "Command": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPropertyBag", "Id": 627, - "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2 + "CommandName": "Get-PnPPropertyBag", + "Rank": 2, + "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "CommandName": "Get-PnPPropertyBag", "Id": 628, - "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3 + "CommandName": "Get-PnPPropertyBag", + "Rank": 3, + "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "CommandName": "Get-PnPPropertyBag", "Id": 629, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4 + "CommandName": "Get-PnPPropertyBag", + "Rank": 4, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "CommandName": "Get-PnPPropertyBag", "Id": 630, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5 + "CommandName": "Get-PnPPropertyBag", + "Rank": 5, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "CommandName": "Get-PnPPublishingImageRendition", "Id": 631, - "Command": "Get-PnPPublishingImageRendition", - "Rank": 1 + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 1, + "Command": "Get-PnPPublishingImageRendition" }, { - "CommandName": "Get-PnPPublishingImageRendition", "Id": 632, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2 + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 2, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "CommandName": "Get-PnPPublishingImageRendition", "Id": 633, - "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3 + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 3, + "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "CommandName": "Get-PnPRecycleBinItem", "Id": 634, - "Command": "Get-PnPRecycleBinItem", - "Rank": 1 + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 1, + "Command": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRecycleBinItem", "Id": 635, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2 + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 2, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "CommandName": "Get-PnPRecycleBinItem", "Id": 636, - "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3 + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 3, + "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "CommandName": "Get-PnPRecycleBinItem", "Id": 637, - "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4 + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 4, + "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "CommandName": "Get-PnPRecycleBinItem", "Id": 638, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5 + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 5, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "CommandName": "Get-PnPRequestAccessEmails", "Id": 639, - "Command": "Get-PnPRequestAccessEmails", - "Rank": 1 + "CommandName": "Get-PnPRequestAccessEmails", + "Rank": 1, + "Command": "Get-PnPRequestAccessEmails" }, { - "CommandName": "Get-PnPRetentionLabel", "Id": 640, - "Command": "Get-PnPRetentionLabel", - "Rank": 1 + "CommandName": "Get-PnPRetentionLabel", + "Rank": 1, + "Command": "Get-PnPRetentionLabel" }, { - "CommandName": "Get-PnPRetentionLabel", "Id": 641, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Rank": 2 + "CommandName": "Get-PnPRetentionLabel", + "Rank": 2, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { - "CommandName": "Get-PnPRoleDefinition", "Id": 642, - "Command": "Get-PnPRoleDefinition", - "Rank": 1 + "CommandName": "Get-PnPRoleDefinition", + "Rank": 1, + "Command": "Get-PnPRoleDefinition" }, { - "CommandName": "Get-PnPRoleDefinition", "Id": 643, - "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2 + "CommandName": "Get-PnPRoleDefinition", + "Rank": 2, + "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "CommandName": "Get-PnPRoleDefinition", "Id": 644, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3 + "CommandName": "Get-PnPRoleDefinition", + "Rank": 3, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "CommandName": "Get-PnPSearchConfiguration", "Id": 645, - "Command": "Get-PnPSearchConfiguration", - "Rank": 1 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 1, + "Command": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", "Id": 646, - "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 2, + "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "CommandName": "Get-PnPSearchConfiguration", "Id": 647, - "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 3, + "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "CommandName": "Get-PnPSearchConfiguration", "Id": 648, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 4, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "CommandName": "Get-PnPSearchConfiguration", "Id": 649, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 5, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "CommandName": "Get-PnPSearchConfiguration", "Id": 650, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 6, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "CommandName": "Get-PnPSearchConfiguration", "Id": 651, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 7, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "CommandName": "Get-PnPSearchConfiguration", "Id": 652, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 8, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Id": 653, - "Command": "Get-PnPSearchCrawlLog", - "Rank": 1 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 1, + "Command": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Id": 654, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 2, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Id": 655, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 3, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Id": 656, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 4, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Id": 657, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 5, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Id": 658, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 6, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Id": 659, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 7, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "CommandName": "Get-PnPSearchSettings", "Id": 660, - "Command": "Get-PnPSearchSettings", - "Rank": 1 + "CommandName": "Get-PnPSearchSettings", + "Rank": 1, + "Command": "Get-PnPSearchSettings" }, { - "CommandName": "Get-PnPServiceCurrentHealth", "Id": 661, - "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1 + "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 1, + "Command": "Get-PnPServiceCurrentHealth" }, { - "CommandName": "Get-PnPServiceCurrentHealth", "Id": 662, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2 + "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 2, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "CommandName": "Get-PnPServiceHealthIssue", "Id": 663, - "Command": "Get-PnPServiceHealthIssue", - "Rank": 1 + "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 1, + "Command": "Get-PnPServiceHealthIssue" }, { - "CommandName": "Get-PnPServiceHealthIssue", "Id": 664, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2 + "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 2, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "CommandName": "Get-PnPSharePointAddIn", "Id": 665, - "Command": "Get-PnPSharePointAddIn", - "Rank": 1 + "CommandName": "Get-PnPSharePointAddIn", + "Rank": 1, + "Command": "Get-PnPSharePointAddIn" }, { - "CommandName": "Get-PnPSharePointAddIn", "Id": 666, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2 + "CommandName": "Get-PnPSharePointAddIn", + "Rank": 2, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Id": 667, - "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1, + "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "CommandName": "Get-PnPSite", "Id": 668, - "Command": "Get-PnPSite", - "Rank": 1 + "CommandName": "Get-PnPSite", + "Rank": 1, + "Command": "Get-PnPSite" }, { - "CommandName": "Get-PnPSite", "Id": 669, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2 + "CommandName": "Get-PnPSite", + "Rank": 2, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Id": 670, - "Command": "Get-PnPSiteAnalyticsData -All", - "Rank": 1 + "CommandName": "Get-PnPSiteAnalyticsData", + "Rank": 1, + "Command": "Get-PnPSiteAnalyticsData -All" }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Id": 671, - "Command": "Get-PnPSiteAnalyticsData -LastSevenDays", - "Rank": 2 + "CommandName": "Get-PnPSiteAnalyticsData", + "Rank": 2, + "Command": "Get-PnPSiteAnalyticsData -LastSevenDays" }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Id": 672, - "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", - "Rank": 3 + "CommandName": "Get-PnPSiteAnalyticsData", + "Rank": 3, + "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { - "CommandName": "Get-PnPSiteAnalyticsData", "Id": 673, - "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", - "Rank": 4 + "CommandName": "Get-PnPSiteAnalyticsData", + "Rank": 4, + "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { - "CommandName": "Get-PnPSiteClosure", "Id": 674, - "Command": "Get-PnPSiteClosure", - "Rank": 1 + "CommandName": "Get-PnPSiteClosure", + "Rank": 1, + "Command": "Get-PnPSiteClosure" }, { - "CommandName": "Get-PnPSiteCollectionAdmin", "Id": 675, - "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1 + "CommandName": "Get-PnPSiteCollectionAdmin", + "Rank": 1, + "Command": "Get-PnPSiteCollectionAdmin" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 676, - "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1 + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1, + "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 677, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2 + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 2, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 678, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3 + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 3, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "CommandName": "Get-PnPSiteCollectionTermStore", "Id": 679, - "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1 + "CommandName": "Get-PnPSiteCollectionTermStore", + "Rank": 1, + "Command": "Get-PnPSiteCollectionTermStore" }, { - "CommandName": "Get-PnPSiteDesign", "Id": 680, - "Command": "Get-PnPSiteDesign", - "Rank": 1 + "CommandName": "Get-PnPSiteDesign", + "Rank": 1, + "Command": "Get-PnPSiteDesign" }, { - "CommandName": "Get-PnPSiteDesign", "Id": 681, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "CommandName": "Get-PnPSiteDesign", + "Rank": 2, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Get-PnPSiteDesignRights", "Id": 682, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Get-PnPSiteDesignRights", + "Rank": 1, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Get-PnPSiteDesignRun", "Id": 683, - "Command": "Get-PnPSiteDesignRun", - "Rank": 1 + "CommandName": "Get-PnPSiteDesignRun", + "Rank": 1, + "Command": "Get-PnPSiteDesignRun" }, { - "CommandName": "Get-PnPSiteDesignRun", "Id": 684, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2 + "CommandName": "Get-PnPSiteDesignRun", + "Rank": 2, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "CommandName": "Get-PnPSiteDesignTask", "Id": 685, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1 + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 1, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "CommandName": "Get-PnPSiteDesignTask", "Id": 686, - "Command": "Get-PnPSiteDesignTask", - "Rank": 2 + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 2, + "Command": "Get-PnPSiteDesignTask" }, { - "CommandName": "Get-PnPSiteDesignTask", "Id": 687, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3 + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 3, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "CommandName": "Get-PnPSiteGroup", "Id": 688, - "Command": "Get-PnPSiteGroup", - "Rank": 1 + "CommandName": "Get-PnPSiteGroup", + "Rank": 1, + "Command": "Get-PnPSiteGroup" }, { - "CommandName": "Get-PnPSiteGroup", "Id": 689, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2 + "CommandName": "Get-PnPSiteGroup", + "Rank": 2, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "CommandName": "Get-PnPSiteGroup", "Id": 690, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3 + "CommandName": "Get-PnPSiteGroup", + "Rank": 3, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "CommandName": "Get-PnPSiteGroup", "Id": 691, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4 + "CommandName": "Get-PnPSiteGroup", + "Rank": 4, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "CommandName": "Get-PnPSitePolicy", "Id": 692, - "Command": "Get-PnPSitePolicy", - "Rank": 1 + "CommandName": "Get-PnPSitePolicy", + "Rank": 1, + "Command": "Get-PnPSitePolicy" }, { - "CommandName": "Get-PnPSitePolicy", "Id": 693, - "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2 + "CommandName": "Get-PnPSitePolicy", + "Rank": 2, + "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "CommandName": "Get-PnPSitePolicy", "Id": 694, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3 + "CommandName": "Get-PnPSitePolicy", + "Rank": 3, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "CommandName": "Get-PnPSiteScript", "Id": 695, - "Command": "Get-PnPSiteScript", - "Rank": 1 + "CommandName": "Get-PnPSiteScript", + "Rank": 1, + "Command": "Get-PnPSiteScript" }, { - "CommandName": "Get-PnPSiteScript", "Id": 696, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "CommandName": "Get-PnPSiteScript", + "Rank": 2, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Get-PnPSiteScriptFromList", "Id": 697, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1 + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 1, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "CommandName": "Get-PnPSiteScriptFromList", "Id": 698, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2 + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 2, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "CommandName": "Get-PnPSiteScriptFromList", "Id": 699, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 3, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 700, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 1, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 701, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 2, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 702, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Rank": 3 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 3, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 703, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Rank": 4 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 4, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 704, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 5, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 705, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Rank": 6 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 6, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 706, - "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 1, + "Command": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 707, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 2, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 708, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 3, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 709, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 4, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 710, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 5, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 711, - "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 6, + "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "CommandName": "Get-PnPSiteSensitivityLabel", "Id": 712, - "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1 + "CommandName": "Get-PnPSiteSensitivityLabel", + "Rank": 1, + "Command": "Get-PnPSiteSensitivityLabel" }, { - "CommandName": "Get-PnPSiteSetVersionPolicyProgress", "Id": 713, - "Command": "Get-PnPSiteSetVersionPolicyProgress", - "Rank": 1 + "CommandName": "Get-PnPSiteSetVersionPolicyProgress", + "Rank": 1, + "Command": "Get-PnPSiteSetVersionPolicyProgress" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 714, - "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 1, + "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 715, - "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 2, + "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 716, - "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 3, + "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 717, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 4, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 718, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 5, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 719, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 6, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 720, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 7, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 721, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 8, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 722, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 9, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 723, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 10, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 724, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 11, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 725, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 12, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 726, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "Rank": 13 + "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\"" }, { - "CommandName": "Get-PnPSiteTemplate", "Id": 727, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Rank": 14 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 14, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "CommandName": "Get-PnPSiteUserInvitations", "Id": 728, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1 + "CommandName": "Get-PnPSiteUserInvitations", + "Rank": 1, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "CommandName": "Get-PnPSiteVersionPolicy", "Id": 729, - "Command": "Get-PnPSiteVersionPolicy", - "Rank": 1 + "CommandName": "Get-PnPSiteVersionPolicy", + "Rank": 1, + "Command": "Get-PnPSiteVersionPolicy" }, { - "CommandName": "Get-PnPStorageEntity", "Id": 730, - "Command": "Get-PnPStorageEntity", - "Rank": 1 + "CommandName": "Get-PnPStorageEntity", + "Rank": 1, + "Command": "Get-PnPStorageEntity" }, { - "CommandName": "Get-PnPStorageEntity", "Id": 731, - "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2 + "CommandName": "Get-PnPStorageEntity", + "Rank": 2, + "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "CommandName": "Get-PnPStorageEntity", "Id": 732, - "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3 + "CommandName": "Get-PnPStorageEntity", + "Rank": 3, + "Command": "Get-PnPStorageEntity -Scope Site" }, { - "CommandName": "Get-PnPStorageEntity", "Id": 733, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4 + "CommandName": "Get-PnPStorageEntity", + "Rank": 4, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "CommandName": "Get-PnPStoredCredential", "Id": 734, - "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1 + "CommandName": "Get-PnPStoredCredential", + "Rank": 1, + "Command": "Get-PnPStoredCredential -Name O365" }, { - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Id": 735, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1 + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Id": 736, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1 + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Id": 737, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1 + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Rank": 1, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "CommandName": "Get-PnPSubWeb", "Id": 738, - "Command": "Get-PnPSubWeb", - "Rank": 1 + "CommandName": "Get-PnPSubWeb", + "Rank": 1, + "Command": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSubWeb", "Id": 739, - "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2 + "CommandName": "Get-PnPSubWeb", + "Rank": 2, + "Command": "Get-PnPSubWeb -Recurse" }, { - "CommandName": "Get-PnPSubWeb", "Id": 740, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3 + "CommandName": "Get-PnPSubWeb", + "Rank": 3, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "CommandName": "Get-PnPSubWeb", "Id": 741, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4 + "CommandName": "Get-PnPSubWeb", + "Rank": 4, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "CommandName": "Get-PnPSubWeb", "Id": 742, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5 + "CommandName": "Get-PnPSubWeb", + "Rank": 5, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "CommandName": "Get-PnPSyntexModel", "Id": 743, - "Command": "Get-PnPSyntexModel", - "Rank": 1 + "CommandName": "Get-PnPSyntexModel", + "Rank": 1, + "Command": "Get-PnPSyntexModel" }, { - "CommandName": "Get-PnPSyntexModel", "Id": 744, - "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2 + "CommandName": "Get-PnPSyntexModel", + "Rank": 2, + "Command": "Get-PnPSyntexModel -Identity 1" }, { - "CommandName": "Get-PnPSyntexModel", "Id": 745, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3 + "CommandName": "Get-PnPSyntexModel", + "Rank": 3, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "CommandName": "Get-PnPSyntexModelPublication", "Id": 746, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1 + "CommandName": "Get-PnPSyntexModelPublication", + "Rank": 1, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "CommandName": "Get-PnPTaxonomyItem", "Id": 747, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1 + "CommandName": "Get-PnPTaxonomyItem", + "Rank": 1, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "CommandName": "Get-PnPTeamsApp", "Id": 748, - "Command": "Get-PnPTeamsApp", - "Rank": 1 + "CommandName": "Get-PnPTeamsApp", + "Rank": 1, + "Command": "Get-PnPTeamsApp" }, { - "CommandName": "Get-PnPTeamsApp", "Id": 749, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2 + "CommandName": "Get-PnPTeamsApp", + "Rank": 2, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "CommandName": "Get-PnPTeamsApp", "Id": 750, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3 + "CommandName": "Get-PnPTeamsApp", + "Rank": 3, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "CommandName": "Get-PnPTeamsChannel", "Id": 751, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannel", + "Rank": 1, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "CommandName": "Get-PnPTeamsChannel", "Id": 752, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannel", + "Rank": 2, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "CommandName": "Get-PnPTeamsChannel", "Id": 753, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 3 + "CommandName": "Get-PnPTeamsChannel", + "Rank": 3, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 754, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 1, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 755, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 2, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "CommandName": "Get-PnPTeamsChannelMessage", "Id": 756, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 1, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "CommandName": "Get-PnPTeamsChannelMessage", "Id": 757, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 2, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 758, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 1, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 759, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 2, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "CommandName": "Get-PnPTeamsChannelUser", "Id": 760, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 1, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "CommandName": "Get-PnPTeamsChannelUser", "Id": 761, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 2, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "CommandName": "Get-PnPTeamsChannelUser", "Id": 762, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Rank": 3 + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 3, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "CommandName": "Get-PnPTeamsChannelUser", "Id": 763, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4 + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 4, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 764, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Rank": 1 + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 1, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 765, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2 + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 2, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "CommandName": "Get-PnPTeamsTab", "Id": 766, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1 + "CommandName": "Get-PnPTeamsTab", + "Rank": 1, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "CommandName": "Get-PnPTeamsTab", "Id": 767, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Rank": 2 + "CommandName": "Get-PnPTeamsTab", + "Rank": 2, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "CommandName": "Get-PnPTeamsTab", "Id": 768, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "Rank": 3 + "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" }, { - "CommandName": "Get-PnPTeamsTab", "Id": 769, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 4 + "CommandName": "Get-PnPTeamsTab", + "Rank": 4, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "CommandName": "Get-PnPTeamsTab", "Id": 770, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5 + "CommandName": "Get-PnPTeamsTab", + "Rank": 5, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "CommandName": "Get-PnPTeamsTag", "Id": 771, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1 + "CommandName": "Get-PnPTeamsTag", + "Rank": 1, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "CommandName": "Get-PnPTeamsTag", "Id": 772, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2 + "CommandName": "Get-PnPTeamsTag", + "Rank": 2, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "CommandName": "Get-PnPTeamsTeam", "Id": 773, - "Command": "Get-PnPTeamsTeam", - "Rank": 1 + "CommandName": "Get-PnPTeamsTeam", + "Rank": 1, + "Command": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsTeam", "Id": 774, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2 + "CommandName": "Get-PnPTeamsTeam", + "Rank": 2, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "CommandName": "Get-PnPTeamsTeam", "Id": 775, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3 + "CommandName": "Get-PnPTeamsTeam", + "Rank": 3, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "CommandName": "Get-PnPTeamsTeam", "Id": 776, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4 + "CommandName": "Get-PnPTeamsTeam", + "Rank": 4, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "CommandName": "Get-PnPTeamsTeam", "Id": 777, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5 + "CommandName": "Get-PnPTeamsTeam", + "Rank": 5, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "CommandName": "Get-PnPTeamsUser", "Id": 778, - "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1 + "CommandName": "Get-PnPTeamsUser", + "Rank": 1, + "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "CommandName": "Get-PnPTeamsUser", "Id": 779, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2 + "CommandName": "Get-PnPTeamsUser", + "Rank": 2, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "CommandName": "Get-PnPTeamsUser", "Id": 780, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3 + "CommandName": "Get-PnPTeamsUser", + "Rank": 3, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "CommandName": "Get-PnPTeamsUser", "Id": 781, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4 + "CommandName": "Get-PnPTeamsUser", + "Rank": 4, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Id": 782, - "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1 + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1, + "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "CommandName": "Get-PnPTenant", "Id": 783, - "Command": "Get-PnPTenant", - "Rank": 1 + "CommandName": "Get-PnPTenant", + "Rank": 1, + "Command": "Get-PnPTenant" }, { - "CommandName": "Get-PnPTenantAppCatalogUrl", "Id": 784, - "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1 + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Rank": 1, + "Command": "Get-PnPTenantAppCatalogUrl" }, { - "CommandName": "Get-PnPTenantCdnEnabled", "Id": 785, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1 + "CommandName": "Get-PnPTenantCdnEnabled", + "Rank": 1, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "CommandName": "Get-PnPTenantCdnOrigin", "Id": 786, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1 + "CommandName": "Get-PnPTenantCdnOrigin", + "Rank": 1, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "CommandName": "Get-PnPTenantCdnPolicies", "Id": 787, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1 + "CommandName": "Get-PnPTenantCdnPolicies", + "Rank": 1, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "CommandName": "Get-PnPTenantDeletedSite", "Id": 788, - "Command": "Get-PnPTenantDeletedSite", - "Rank": 1 + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 1, + "Command": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", "Id": 789, - "Command": "Get-PnPTenantDeletedSite -Detailed", - "Rank": 2 + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 2, + "Command": "Get-PnPTenantDeletedSite -Detailed" }, { - "CommandName": "Get-PnPTenantDeletedSite", "Id": 790, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 3 + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 3, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Get-PnPTenantDeletedSite", "Id": 791, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 4 + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 4, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", "Id": 792, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 5 + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 5, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "CommandName": "Get-PnPTenantId", "Id": 793, - "Command": "Get-PnPTenantId", - "Rank": 1 + "CommandName": "Get-PnPTenantId", + "Rank": 1, + "Command": "Get-PnPTenantId" }, { - "CommandName": "Get-PnPTenantId", "Id": 794, - "Command": "Get-PnPTenantId contoso", - "Rank": 2 + "CommandName": "Get-PnPTenantId", + "Rank": 2, + "Command": "Get-PnPTenantId contoso" }, { - "CommandName": "Get-PnPTenantId", "Id": 795, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3 + "CommandName": "Get-PnPTenantId", + "Rank": 3, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "CommandName": "Get-PnPTenantId", "Id": 796, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4 + "CommandName": "Get-PnPTenantId", + "Rank": 4, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "CommandName": "Get-PnPTenantInfo", "Id": 797, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Rank": 1 + "CommandName": "Get-PnPTenantInfo", + "Rank": 1, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "CommandName": "Get-PnPTenantInfo", "Id": 798, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Rank": 2 + "CommandName": "Get-PnPTenantInfo", + "Rank": 2, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "CommandName": "Get-PnPTenantInfo", "Id": 799, - "Command": "Get-PnPTenantInfo", - "Rank": 3 + "CommandName": "Get-PnPTenantInfo", + "Rank": 3, + "Command": "Get-PnPTenantInfo" }, { - "CommandName": "Get-PnPTenantInfo", "Id": 800, - "Command": "Get-PnPTenantInfo -CurrentTenant", - "Rank": 4 + "CommandName": "Get-PnPTenantInfo", + "Rank": 4, + "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "CommandName": "Get-PnPTenantInstance", "Id": 801, - "Command": "Get-PnPTenantInstance", - "Rank": 1 + "CommandName": "Get-PnPTenantInstance", + "Rank": 1, + "Command": "Get-PnPTenantInstance" }, { - "CommandName": "Get-PnPTenantRecycleBinItem", "Id": 802, - "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1 + "CommandName": "Get-PnPTenantRecycleBinItem", + "Rank": 1, + "Command": "Get-PnPTenantRecycleBinItem" }, { - "CommandName": "Get-PnPTenantSequence", "Id": 803, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1 + "CommandName": "Get-PnPTenantSequence", + "Rank": 1, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "CommandName": "Get-PnPTenantSequence", "Id": 804, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2 + "CommandName": "Get-PnPTenantSequence", + "Rank": 2, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "CommandName": "Get-PnPTenantSequenceSite", "Id": 805, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1 + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 1, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "CommandName": "Get-PnPTenantSequenceSite", "Id": 806, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2 + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 2, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "CommandName": "Get-PnPTenantSite", "Id": 807, - "Command": "Get-PnPTenantSite", - "Rank": 1 + "CommandName": "Get-PnPTenantSite", + "Rank": 1, + "Command": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", "Id": 808, - "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2 + "CommandName": "Get-PnPTenantSite", + "Rank": 2, + "Command": "Get-PnPTenantSite -Detailed" }, { - "CommandName": "Get-PnPTenantSite", "Id": 809, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3 + "CommandName": "Get-PnPTenantSite", + "Rank": 3, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "CommandName": "Get-PnPTenantSite", "Id": 810, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4 + "CommandName": "Get-PnPTenantSite", + "Rank": 4, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "CommandName": "Get-PnPTenantSite", "Id": 811, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5 + "CommandName": "Get-PnPTenantSite", + "Rank": 5, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "CommandName": "Get-PnPTenantSite", "Id": 812, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6 + "CommandName": "Get-PnPTenantSite", + "Rank": 6, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "CommandName": "Get-PnPTenantSite", "Id": 813, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7 + "CommandName": "Get-PnPTenantSite", + "Rank": 7, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "CommandName": "Get-PnPTenantSite", "Id": 814, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8 + "CommandName": "Get-PnPTenantSite", + "Rank": 8, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "CommandName": "Get-PnPTenantSite", "Id": 815, - "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9 + "CommandName": "Get-PnPTenantSite", + "Rank": 9, + "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "CommandName": "Get-PnPTenantSyncClientRestriction", "Id": 816, - "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1 + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, + "Command": "Get-PnPTenantSyncClientRestriction" }, { - "CommandName": "Get-PnPTenantTemplate", "Id": 817, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1 + "CommandName": "Get-PnPTenantTemplate", + "Rank": 1, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "CommandName": "Get-PnPTenantTemplate", "Id": 818, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2 + "CommandName": "Get-PnPTenantTemplate", + "Rank": 2, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "CommandName": "Get-PnPTenantTemplate", "Id": 819, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Rank": 3 + "CommandName": "Get-PnPTenantTemplate", + "Rank": 3, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "CommandName": "Get-PnPTenantTheme", "Id": 820, - "Command": "Get-PnPTenantTheme", - "Rank": 1 + "CommandName": "Get-PnPTenantTheme", + "Rank": 1, + "Command": "Get-PnPTenantTheme" }, { - "CommandName": "Get-PnPTenantTheme", "Id": 821, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2 + "CommandName": "Get-PnPTenantTheme", + "Rank": 2, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "CommandName": "Get-PnPTenantTheme", "Id": 822, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3 + "CommandName": "Get-PnPTenantTheme", + "Rank": 3, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "CommandName": "Get-PnPTerm", "Id": 823, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1 + "CommandName": "Get-PnPTerm", + "Rank": 1, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTerm", "Id": 824, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "CommandName": "Get-PnPTerm", + "Rank": 2, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTerm", "Id": 825, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3 + "CommandName": "Get-PnPTerm", + "Rank": 3, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTerm", "Id": 826, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Rank": 4 + "CommandName": "Get-PnPTerm", + "Rank": 4, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "CommandName": "Get-PnPTerm", "Id": 827, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Rank": 5 + "CommandName": "Get-PnPTerm", + "Rank": 5, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "CommandName": "Get-PnPTermGroup", "Id": 828, - "Command": "Get-PnPTermGroup", - "Rank": 1 + "CommandName": "Get-PnPTermGroup", + "Rank": 1, + "Command": "Get-PnPTermGroup" }, { - "CommandName": "Get-PnPTermGroup", "Id": 829, - "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2 + "CommandName": "Get-PnPTermGroup", + "Rank": 2, + "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "CommandName": "Get-PnPTermGroup", "Id": 830, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3 + "CommandName": "Get-PnPTermGroup", + "Rank": 3, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "CommandName": "Get-PnPTermLabel", "Id": 831, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1 + "CommandName": "Get-PnPTermLabel", + "Rank": 1, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "CommandName": "Get-PnPTermLabel", "Id": 832, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2 + "CommandName": "Get-PnPTermLabel", + "Rank": 2, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "CommandName": "Get-PnPTermLabel", "Id": 833, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3 + "CommandName": "Get-PnPTermLabel", + "Rank": 3, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTermSet", "Id": 834, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1 + "CommandName": "Get-PnPTermSet", + "Rank": 1, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTermSet", "Id": 835, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "CommandName": "Get-PnPTermSet", + "Rank": 2, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTermSet", "Id": 836, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3 + "CommandName": "Get-PnPTermSet", + "Rank": 3, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "CommandName": "Get-PnPTheme", "Id": 837, - "Command": "Get-PnPTheme", - "Rank": 1 + "CommandName": "Get-PnPTheme", + "Rank": 1, + "Command": "Get-PnPTheme" }, { - "CommandName": "Get-PnPTheme", "Id": 838, - "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2 + "CommandName": "Get-PnPTheme", + "Rank": 2, + "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "CommandName": "Get-PnPTimeZoneId", "Id": 839, - "Command": "Get-PnPTimeZoneId", - "Rank": 1 + "CommandName": "Get-PnPTimeZoneId", + "Rank": 1, + "Command": "Get-PnPTimeZoneId" }, { - "CommandName": "Get-PnPTimeZoneId", "Id": 840, - "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2 + "CommandName": "Get-PnPTimeZoneId", + "Rank": 2, + "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "CommandName": "Get-PnPUnfurlLink", "Id": 841, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1 + "CommandName": "Get-PnPUnfurlLink", + "Rank": 1, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "CommandName": "Get-PnPUnifiedAuditLog", "Id": 842, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Rank": 1 + "CommandName": "Get-PnPUnifiedAuditLog", + "Rank": 1, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Id": 843, - "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1 + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 1, + "Command": "Get-PnPUPABulkImportStatus" }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Id": 844, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2 + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 2, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Id": 845, - "Command": "Get-PnPUPABulkImportStatus -JobId <guid>", - "Rank": 3 + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 3, + "Command": "Get-PnPUPABulkImportStatus -JobId <guid>" }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Id": 846, - "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails", - "Rank": 4 + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 4, + "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails" }, { - "CommandName": "Get-PnPUser", "Id": 847, - "Command": "Get-PnPUser", - "Rank": 1 + "CommandName": "Get-PnPUser", + "Rank": 1, + "Command": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", "Id": 848, - "Command": "Get-PnPUser -Identity 23", - "Rank": 2 + "CommandName": "Get-PnPUser", + "Rank": 2, + "Command": "Get-PnPUser -Identity 23" }, { - "CommandName": "Get-PnPUser", "Id": 849, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3 + "CommandName": "Get-PnPUser", + "Rank": 3, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "CommandName": "Get-PnPUser", "Id": 850, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4 + "CommandName": "Get-PnPUser", + "Rank": 4, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "CommandName": "Get-PnPUser", "Id": 851, - "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5 + "CommandName": "Get-PnPUser", + "Rank": 5, + "Command": "Get-PnPUser -WithRightsAssigned" }, { - "CommandName": "Get-PnPUser", "Id": 852, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6 + "CommandName": "Get-PnPUser", + "Rank": 6, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "CommandName": "Get-PnPUser", "Id": 853, - "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7 + "CommandName": "Get-PnPUser", + "Rank": 7, + "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "CommandName": "Get-PnPUserOneDriveQuota", "Id": 854, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1 + "CommandName": "Get-PnPUserOneDriveQuota", + "Rank": 1, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "CommandName": "Get-PnPUserProfileProperty", "Id": 855, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1 + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 1, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "CommandName": "Get-PnPUserProfileProperty", "Id": 856, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2 + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 2, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "CommandName": "Get-PnPUserProfileProperty", "Id": 857, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3 + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 3, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "CommandName": "Get-PnPView", "Id": 858, - "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1 + "CommandName": "Get-PnPView", + "Rank": 1, + "Command": "Get-PnPView -List \"Demo List\"" }, { - "CommandName": "Get-PnPView", "Id": 859, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2 + "CommandName": "Get-PnPView", + "Rank": 2, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "CommandName": "Get-PnPView", "Id": 860, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3 + "CommandName": "Get-PnPView", + "Rank": 3, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 861, - "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1, + "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 862, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2 + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 2, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "CommandName": "Get-PnPWeb", "Id": 863, - "Command": "Get-PnPWeb", - "Rank": 1 + "CommandName": "Get-PnPWeb", + "Rank": 1, + "Command": "Get-PnPWeb" }, { - "CommandName": "Get-PnPWebHeader", "Id": 864, - "Command": "Get-PnPWebHeader", - "Rank": 1 + "CommandName": "Get-PnPWebHeader", + "Rank": 1, + "Command": "Get-PnPWebHeader" }, { - "CommandName": "Get-PnPWebhookSubscription", "Id": 865, - "Command": "Get-PnPWebhookSubscription -List MyList", - "Rank": 1 + "CommandName": "Get-PnPWebhookSubscription", + "Rank": 1, + "Command": "Get-PnPWebhookSubscription -List MyList" }, { - "CommandName": "Get-PnPWebPart", "Id": 866, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1 + "CommandName": "Get-PnPWebPart", + "Rank": 1, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "CommandName": "Get-PnPWebPart", "Id": 867, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2 + "CommandName": "Get-PnPWebPart", + "Rank": 2, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "CommandName": "Get-PnPWebPartProperty", "Id": 868, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Rank": 1 + "CommandName": "Get-PnPWebPartProperty", + "Rank": 1, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "CommandName": "Get-PnPWebPartProperty", "Id": 869, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Rank": 2 + "CommandName": "Get-PnPWebPartProperty", + "Rank": 2, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "CommandName": "Get-PnPWebPartXml", "Id": 870, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "CommandName": "Get-PnPWebPartXml", + "Rank": 1, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "CommandName": "Get-PnPWebPermission", "Id": 871, - "Command": "Get-PnPWebPermission -Identity (Get-PnPWeb) -PrincipalId 60", - "Rank": 1 + "CommandName": "Get-PnPWebPermission", + "Rank": 1, + "Command": "Get-PnPWebPermission -Identity (Get-PnPWeb) -PrincipalId 60" }, { - "CommandName": "Get-PnPWebPermission", "Id": 872, - "Command": "Get-PnPWebPermission -Identity \"subsite\" -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2 + "CommandName": "Get-PnPWebPermission", + "Rank": 2, + "Command": "Get-PnPWebPermission -Identity \"subsite\" -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "CommandName": "Get-PnPWebTemplates", "Id": 873, - "Command": "Get-PnPWebTemplates", - "Rank": 1 + "CommandName": "Get-PnPWebTemplates", + "Rank": 1, + "Command": "Get-PnPWebTemplates" }, { - "CommandName": "Get-PnPWebTemplates", "Id": 874, - "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2 + "CommandName": "Get-PnPWebTemplates", + "Rank": 2, + "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "CommandName": "Get-PnPWebTemplates", "Id": 875, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3 + "CommandName": "Get-PnPWebTemplates", + "Rank": 3, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "CommandName": "Get-PnPWikiPageContent", "Id": 876, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1 + "CommandName": "Get-PnPWikiPageContent", + "Rank": 1, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 877, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1 + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 1, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 878, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2 + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 2, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects" }, { - "CommandName": "Grant-PnPHubSiteRights", "Id": 879, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "CommandName": "Grant-PnPHubSiteRights", + "Rank": 1, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "CommandName": "Grant-PnPSiteDesignRights", "Id": 880, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "CommandName": "Grant-PnPSiteDesignRights", + "Rank": 1, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Id": 881, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1 + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Rank": 1, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "CommandName": "Import-PnPTaxonomy", "Id": 882, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1 + "CommandName": "Import-PnPTaxonomy", + "Rank": 1, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "CommandName": "Import-PnPTaxonomy", "Id": 883, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2 + "CommandName": "Import-PnPTaxonomy", + "Rank": 2, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "CommandName": "Import-PnPTaxonomy", "Id": 884, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3 + "CommandName": "Import-PnPTaxonomy", + "Rank": 3, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "CommandName": "Import-PnPTermGroupFromXml", "Id": 885, - "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1 + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 1, + "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "CommandName": "Import-PnPTermGroupFromXml", "Id": 886, - "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2 + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 2, + "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "CommandName": "Import-PnPTermSet", "Id": 887, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1 + "CommandName": "Import-PnPTermSet", + "Rank": 1, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "CommandName": "Import-PnPTermSet", "Id": 888, - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", - "Rank": 2 + "CommandName": "Import-PnPTermSet", + "Rank": 2, + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "CommandName": "Import-PnPTermSet", "Id": 889, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", - "Rank": 3 + "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'" }, { - "CommandName": "Install-PnPApp", "Id": 890, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Install-PnPApp", + "Rank": 1, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Install-PnPApp", "Id": 891, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "CommandName": "Install-PnPApp", + "Rank": 2, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "CommandName": "Invoke-PnPGraphMethod", "Id": 892, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Rank": 1 + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 1, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "CommandName": "Invoke-PnPGraphMethod", "Id": 893, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Rank": 2 + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 2, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "CommandName": "Invoke-PnPGraphMethod", "Id": 894, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3 + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 3, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "CommandName": "Invoke-PnPGraphMethod", "Id": 895, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Rank": 4 + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 4, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "CommandName": "Invoke-PnPGraphMethod", "Id": 896, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Rank": 5 + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 5, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "CommandName": "Invoke-PnPGraphMethod", "Id": 897, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "Rank": 6 + "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" }, { - "CommandName": "Invoke-PnPGraphMethod", "Id": 898, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"", - "Rank": 7 + "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\"" }, { - "CommandName": "Invoke-PnPListDesign", "Id": 899, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Invoke-PnPListDesign", + "Rank": 1, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Invoke-PnPListDesign", "Id": 900, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2 + "CommandName": "Invoke-PnPListDesign", + "Rank": 2, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "CommandName": "Invoke-PnPQuery", "Id": 901, - "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1 + "CommandName": "Invoke-PnPQuery", + "Rank": 1, + "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "CommandName": "Invoke-PnPSiteDesign", "Id": 902, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Invoke-PnPSiteDesign", + "Rank": 1, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Invoke-PnPSiteDesign", "Id": 903, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2 + "CommandName": "Invoke-PnPSiteDesign", + "Rank": 2, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "CommandName": "Invoke-PnPSiteScript", "Id": 904, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Rank": 1 + "CommandName": "Invoke-PnPSiteScript", + "Rank": 1, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "CommandName": "Invoke-PnPSiteSwap", "Id": 905, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", - "Rank": 1 + "CommandName": "Invoke-PnPSiteSwap", + "Rank": 1, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "CommandName": "Invoke-PnPSiteSwap", "Id": 906, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", - "Rank": 2 + "CommandName": "Invoke-PnPSiteSwap", + "Rank": 2, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "CommandName": "Invoke-PnPSiteSwap", "Id": 907, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", - "Rank": 3 + "CommandName": "Invoke-PnPSiteSwap", + "Rank": 3, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Id": 908, - "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Rank": 1 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 1, + "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Id": 909, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 2, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Id": 910, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 3, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Id": 911, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 4, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Id": 912, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 5, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Id": 913, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 6, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Id": 914, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 7, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Id": 915, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 8, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "CommandName": "Invoke-PnPSPRestMethod", "Id": 916, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1 + "CommandName": "Invoke-PnPSPRestMethod", + "Rank": 1, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "CommandName": "Invoke-PnPTenantTemplate", "Id": 917, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1 + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 1, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "CommandName": "Invoke-PnPTenantTemplate", "Id": 918, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2 + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 2, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "CommandName": "Invoke-PnPTenantTemplate", "Id": 919, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3 + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 3, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "CommandName": "Invoke-PnPWebAction", "Id": 920, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1 + "CommandName": "Invoke-PnPWebAction", + "Rank": 1, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "CommandName": "Invoke-PnPWebAction", "Id": 921, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2 + "CommandName": "Invoke-PnPWebAction", + "Rank": 2, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "CommandName": "Measure-PnPList", "Id": 922, - "Command": "Measure-PnPList \"Documents\"", - "Rank": 1 + "CommandName": "Measure-PnPList", + "Rank": 1, + "Command": "Measure-PnPList \"Documents\"" }, { - "CommandName": "Measure-PnPList", "Id": 923, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2 + "CommandName": "Measure-PnPList", + "Rank": 2, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "CommandName": "Measure-PnPWeb", "Id": 924, - "Command": "Measure-PnPWeb", - "Rank": 1 + "CommandName": "Measure-PnPWeb", + "Rank": 1, + "Command": "Measure-PnPWeb" }, { - "CommandName": "Measure-PnPWeb", "Id": 925, - "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2 + "CommandName": "Measure-PnPWeb", + "Rank": 2, + "Command": "Measure-PnPWeb $web -Recursive" }, { - "CommandName": "Merge-PnPTerm", "Id": 926, - "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", - "Rank": 1 + "CommandName": "Merge-PnPTerm", + "Rank": 1, + "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b" }, { - "CommandName": "Move-PnPFile", "Id": 927, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1 + "CommandName": "Move-PnPFile", + "Rank": 1, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "CommandName": "Move-PnPFile", "Id": 928, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Rank": 2 + "CommandName": "Move-PnPFile", + "Rank": 2, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "CommandName": "Move-PnPFile", "Id": 929, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 3 + "CommandName": "Move-PnPFile", + "Rank": 3, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "CommandName": "Move-PnPFile", "Id": 930, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 4 + "CommandName": "Move-PnPFile", + "Rank": 4, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "CommandName": "Move-PnPFolder", "Id": 931, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Rank": 1 + "CommandName": "Move-PnPFolder", + "Rank": 1, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "CommandName": "Move-PnPFolder", "Id": 932, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2 + "CommandName": "Move-PnPFolder", + "Rank": 2, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "CommandName": "Move-PnPListItemToRecycleBin", "Id": 933, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1 + "CommandName": "Move-PnPListItemToRecycleBin", + "Rank": 1, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "CommandName": "Move-PnPPageComponent", "Id": 934, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1 + "CommandName": "Move-PnPPageComponent", + "Rank": 1, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "CommandName": "Move-PnPPageComponent", "Id": 935, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Rank": 2 + "CommandName": "Move-PnPPageComponent", + "Rank": 2, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "CommandName": "Move-PnPPageComponent", "Id": 936, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Rank": 3 + "CommandName": "Move-PnPPageComponent", + "Rank": 3, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "CommandName": "Move-PnPPageComponent", "Id": 937, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Rank": 4 + "CommandName": "Move-PnPPageComponent", + "Rank": 4, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "CommandName": "Move-PnpRecycleBinItem", "Id": 938, - "Command": "Move-PnPRecycleBinItem", - "Rank": 1 + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 1, + "Command": "Move-PnPRecycleBinItem" }, { - "CommandName": "Move-PnpRecycleBinItem", "Id": 939, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2 + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 2, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "CommandName": "Move-PnpRecycleBinItem", "Id": 940, - "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3 + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 3, + "Command": "Move-PnPRecycleBinItem -Force" }, { - "CommandName": "Move-PnPTerm", "Id": 941, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", - "Rank": 1 + "CommandName": "Move-PnPTerm", + "Rank": 1, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "CommandName": "Move-PnPTerm", "Id": 942, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Rank": 2 + "CommandName": "Move-PnPTerm", + "Rank": 2, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "CommandName": "Move-PnPTerm", "Id": 943, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Rank": 3 + "CommandName": "Move-PnPTerm", + "Rank": 3, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "CommandName": "Move-PnPTermSet", "Id": 944, - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", - "Rank": 1 + "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" }, { - "CommandName": "Move-PnPTermSet", "Id": 945, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Rank": 2 + "CommandName": "Move-PnPTermSet", + "Rank": 2, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "CommandName": "New-PnPAzureADGroup", "Id": 946, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1 + "CommandName": "New-PnPAzureADGroup", + "Rank": 1, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "CommandName": "New-PnPAzureADGroup", "Id": 947, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2 + "CommandName": "New-PnPAzureADGroup", + "Rank": 2, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "CommandName": "New-PnPAzureADGroup", "Id": 948, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Rank": 3 + "CommandName": "New-PnPAzureADGroup", + "Rank": 3, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 949, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 1, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 950, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 2, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 951, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Rank": 3 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 3, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "CommandName": "New-PnPAzureCertificate", "Id": 952, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Rank": 1 + "CommandName": "New-PnPAzureCertificate", + "Rank": 1, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "CommandName": "New-PnPAzureCertificate", "Id": 953, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2 + "CommandName": "New-PnPAzureCertificate", + "Rank": 2, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "CommandName": "New-PnPAzureCertificate", "Id": 954, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Rank": 3 + "CommandName": "New-PnPAzureCertificate", + "Rank": 3, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "CommandName": "New-PnPAzureCertificate", "Id": 955, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", - "Rank": 4 + "CommandName": "New-PnPAzureCertificate", + "Rank": 4, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null" }, { - "CommandName": "New-PnPContainerType", "Id": 956, - "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"", - "Rank": 1 + "CommandName": "New-PnPContainerType", + "Rank": 1, + "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"" }, { - "CommandName": "New-PnPGraphSubscription", "Id": 957, - "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", - "Rank": 1 + "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()" }, { - "CommandName": "New-PnPGraphSubscription", "Id": 958, - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "Rank": 2 + "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()" }, { - "CommandName": "New-PnPGroup", "Id": 959, - "Command": "New-PnPGroup -Title \"My Site Users\"", - "Rank": 1 + "CommandName": "New-PnPGroup", + "Rank": 1, + "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "CommandName": "New-PnPList", "Id": 960, - "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1 + "CommandName": "New-PnPList", + "Rank": 1, + "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "CommandName": "New-PnPList", "Id": 961, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2 + "CommandName": "New-PnPList", + "Rank": 2, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "CommandName": "New-PnPList", "Id": 962, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3 + "CommandName": "New-PnPList", + "Rank": 3, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "CommandName": "New-PnPMicrosoft365Group", "Id": 963, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 1, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "CommandName": "New-PnPMicrosoft365Group", "Id": 964, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Rank": 2 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 2, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "CommandName": "New-PnPMicrosoft365Group", "Id": 965, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Rank": 3 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 3, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "CommandName": "New-PnPMicrosoft365Group", "Id": 966, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Rank": 4 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 4, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "CommandName": "New-PnPMicrosoft365Group", "Id": 967, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 5 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 5, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "CommandName": "New-PnPMicrosoft365Group", "Id": 968, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 6, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "CommandName": "New-PnPMicrosoft365Group", "Id": 969, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "Rank": 7 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 7, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 970, - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", - "Rank": 1 + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 971, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Rank": 2 + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "CommandName": "New-PnPPersonalSite", "Id": 972, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Rank": 1 + "CommandName": "New-PnPPersonalSite", + "Rank": 1, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "CommandName": "New-PnPPlannerPlan", "Id": 973, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1 + "CommandName": "New-PnPPlannerPlan", + "Rank": 1, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "CommandName": "New-PnPSdnProvider", "Id": 974, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1 + "CommandName": "New-PnPSdnProvider", + "Rank": 1, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "CommandName": "New-PnPSite", "Id": 975, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1 + "CommandName": "New-PnPSite", + "Rank": 1, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "CommandName": "New-PnPSite", "Id": 976, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Rank": 2 + "CommandName": "New-PnPSite", + "Rank": 2, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "CommandName": "New-PnPSite", "Id": 977, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Rank": 3 + "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" }, { - "CommandName": "New-PnPSite", "Id": 978, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 4 + "CommandName": "New-PnPSite", + "Rank": 4, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "CommandName": "New-PnPSite", "Id": 979, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 5 + "CommandName": "New-PnPSite", + "Rank": 5, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "CommandName": "New-PnPSite", "Id": 980, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 6 + "CommandName": "New-PnPSite", + "Rank": 6, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "CommandName": "New-PnPSite", "Id": 981, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Rank": 7 + "CommandName": "New-PnPSite", + "Rank": 7, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "CommandName": "New-PnPSite", "Id": 982, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8 + "CommandName": "New-PnPSite", + "Rank": 8, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "CommandName": "New-PnPSite", "Id": 983, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Rank": 9 + "CommandName": "New-PnPSite", + "Rank": 9, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "CommandName": "New-PnPSite", "Id": 984, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Rank": 10 + "CommandName": "New-PnPSite", + "Rank": 10, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "CommandName": "New-PnPSite", "Id": 985, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 11 + "CommandName": "New-PnPSite", + "Rank": 11, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "CommandName": "New-PnPSite", "Id": 986, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Rank": 12 + "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" }, { - "CommandName": "New-PnPSite", "Id": 987, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 13 + "CommandName": "New-PnPSite", + "Rank": 13, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "CommandName": "New-PnPSite", "Id": 988, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 14 + "CommandName": "New-PnPSite", + "Rank": 14, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "CommandName": "New-PnPSite", "Id": 989, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 15 + "CommandName": "New-PnPSite", + "Rank": 15, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "CommandName": "New-PnPSite", "Id": 990, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Rank": 16 + "CommandName": "New-PnPSite", + "Rank": 16, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "CommandName": "New-PnPSiteCollectionTermStore", "Id": 991, - "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1 + "CommandName": "New-PnPSiteCollectionTermStore", + "Rank": 1, + "Command": "New-PnPSiteCollectionTermStore" }, { - "CommandName": "New-PnPSiteGroup", "Id": 992, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1 + "CommandName": "New-PnPSiteGroup", + "Rank": 1, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "CommandName": "New-PnPSiteGroup", "Id": 993, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Rank": 2 + "CommandName": "New-PnPSiteGroup", + "Rank": 2, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 994, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 1, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 995, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 2, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 996, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 3, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 997, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Rank": 4 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 4, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 998, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Rank": 5 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 5, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 999, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 6 + "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\"}" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 1000, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Rank": 7 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 7, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 1001, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 8, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "CommandName": "New-PnPTeamsApp", "Id": 1002, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1 + "CommandName": "New-PnPTeamsApp", + "Rank": 1, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "CommandName": "New-PnPTeamsTeam", "Id": 1003, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1 + "CommandName": "New-PnPTeamsTeam", + "Rank": 1, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "CommandName": "New-PnPTeamsTeam", "Id": 1004, - "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2 + "CommandName": "New-PnPTeamsTeam", + "Rank": 2, + "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "CommandName": "New-PnPTeamsTeam", "Id": 1005, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3 + "CommandName": "New-PnPTeamsTeam", + "Rank": 3, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "CommandName": "New-PnPTeamsTeam", "Id": 1006, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 4 + "CommandName": "New-PnPTeamsTeam", + "Rank": 4, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "CommandName": "New-PnPTeamsTeam", "Id": 1007, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", - "Rank": 5 + "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\"" }, { - "CommandName": "New-PnPTeamsTeam", "Id": 1008, - "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\"", - "Rank": 6 + "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\"" }, { - "CommandName": "New-PnPTenantSite", "Id": 1009, - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", - "Rank": 1 + "CommandName": "New-PnPTenantSite", + "Rank": 1, + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "CommandName": "New-PnPTenantSite", "Id": 1010, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Rank": 2 + "CommandName": "New-PnPTenantSite", + "Rank": 2, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "CommandName": "New-PnPTerm", "Id": 1011, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Rank": 1 + "CommandName": "New-PnPTerm", + "Rank": 1, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "CommandName": "New-PnPTerm", "Id": 1012, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2 + "CommandName": "New-PnPTerm", + "Rank": 2, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "CommandName": "New-PnPTermGroup", "Id": 1013, - "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1 + "CommandName": "New-PnPTermGroup", + "Rank": 1, + "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "CommandName": "New-PnPTermLabel", "Id": 1014, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1 + "CommandName": "New-PnPTermLabel", + "Rank": 1, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "CommandName": "New-PnPTermSet", "Id": 1015, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Rank": 1 + "CommandName": "New-PnPTermSet", + "Rank": 1, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { - "CommandName": "New-PnPUPABulkImportJob", "Id": 1016, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Rank": 1 + "CommandName": "New-PnPUPABulkImportJob", + "Rank": 1, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { - "CommandName": "New-PnPUPABulkImportJob", "Id": 1017, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", - "Rank": 2 + "CommandName": "New-PnPUPABulkImportJob", + "Rank": 2, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "CommandName": "New-PnPUser", "Id": 1018, - "Command": "New-PnPUser -LoginName user@company.com", - "Rank": 1 + "CommandName": "New-PnPUser", + "Rank": 1, + "Command": "New-PnPUser -LoginName user@company.com" }, { - "CommandName": "New-PnPWeb", "Id": 1019, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Rank": 1 + "CommandName": "New-PnPWeb", + "Rank": 1, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { - "CommandName": "Publish-PnPApp", "Id": 1020, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 1 + "CommandName": "Publish-PnPApp", + "Rank": 1, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "CommandName": "Publish-PnPApp", "Id": 1021, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2 + "CommandName": "Publish-PnPApp", + "Rank": 2, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "CommandName": "Publish-PnPCompanyApp", "Id": 1022, - "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", - "Rank": 1 + "CommandName": "Publish-PnPCompanyApp", + "Rank": 1, + "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" }, { - "CommandName": "Publish-PnPContentType", "Id": 1023, - "Command": "Publish-PnPContentType -ContentType 0x0101", - "Rank": 1 + "CommandName": "Publish-PnPContentType", + "Rank": 1, + "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "CommandName": "Publish-PnPSyntexModel", "Id": 1024, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1 + "CommandName": "Publish-PnPSyntexModel", + "Rank": 1, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "CommandName": "Publish-PnPSyntexModel", "Id": 1025, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", - "Rank": 2 + "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" }, { - "CommandName": "Read-PnPSiteTemplate", "Id": 1026, - "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Rank": 1 + "CommandName": "Read-PnPSiteTemplate", + "Rank": 1, + "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "CommandName": "Read-PnPSiteTemplate", "Id": 1027, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2 + "CommandName": "Read-PnPSiteTemplate", + "Rank": 2, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "CommandName": "Read-PnPSiteTemplate", "Id": 1028, - "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3 + "CommandName": "Read-PnPSiteTemplate", + "Rank": 3, + "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "CommandName": "Read-PnPTenantTemplate", "Id": 1029, - "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1 + "CommandName": "Read-PnPTenantTemplate", + "Rank": 1, + "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "CommandName": "Register-PnPAppCatalogSite", "Id": 1030, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1 + "CommandName": "Register-PnPAppCatalogSite", + "Rank": 1, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "CommandName": "Register-PnPAzureADApp", "Id": 1031, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", - "Rank": 1 + "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\")" }, { - "CommandName": "Register-PnPAzureADApp", "Id": 1032, - "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\")", - "Rank": 2 + "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\")" }, { - "CommandName": "Register-PnPAzureADApp", "Id": 1033, - "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\")", - "Rank": 3 + "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\")" }, { - "CommandName": "Register-PnPAzureADApp", "Id": 1034, - "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\")", - "Rank": 4 + "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\")" }, { - "CommandName": "Register-PnPAzureADApp", "Id": 1035, - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Rank": 5 + "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)" }, { - "CommandName": "Register-PnPAzureADApp", "Id": 1036, - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Rank": 6 + "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)" }, { - "CommandName": "Register-PnPAzureADApp", "Id": 1037, - "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", - "Rank": 7 + "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" }, { - "CommandName": "Register-PnPHubSite", "Id": 1038, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1 + "CommandName": "Register-PnPHubSite", + "Rank": 1, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "CommandName": "Register-PnPHubSite", "Id": 1039, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Rank": 2 + "CommandName": "Register-PnPHubSite", + "Rank": 2, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "CommandName": "Register-PnPManagementShellAccess", "Id": 1040, - "Command": "Register-PnPManagementShellAccess", - "Rank": 1 + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 1, + "Command": "Register-PnPManagementShellAccess" }, { - "CommandName": "Register-PnPManagementShellAccess", "Id": 1041, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2 + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 2, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "CommandName": "Register-PnPManagementShellAccess", "Id": 1042, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3 + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 3, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1043, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1 + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 1, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1044, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2 + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 2, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "CommandName": "Remove-PnPAlert", "Id": 1045, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1 + "CommandName": "Remove-PnPAlert", + "Rank": 1, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "CommandName": "Remove-PnPAlert", "Id": 1046, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 2 + "CommandName": "Remove-PnPAlert", + "Rank": 2, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPApp", "Id": 1047, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Remove-PnPApp", + "Rank": 1, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Remove-PnPApp", "Id": 1048, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "CommandName": "Remove-PnPApp", + "Rank": 2, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1049, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 1, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1050, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2 + "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 2, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1051, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1 + "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 1, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1052, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2 + "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 2, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "CommandName": "Remove-PnPAzureADApp", "Id": 1053, - "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1 + "CommandName": "Remove-PnPAzureADApp", + "Rank": 1, + "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "CommandName": "Remove-PnPAzureADApp", "Id": 1054, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2 + "CommandName": "Remove-PnPAzureADApp", + "Rank": 2, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "CommandName": "Remove-PnPAzureADGroup", "Id": 1055, - "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1 + "CommandName": "Remove-PnPAzureADGroup", + "Rank": 1, + "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "CommandName": "Remove-PnPAzureADGroup", "Id": 1056, - "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2 + "CommandName": "Remove-PnPAzureADGroup", + "Rank": 2, + "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "CommandName": "Remove-PnPAzureADGroupMember", "Id": 1057, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPAzureADGroupMember", + "Rank": 1, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPAzureADGroupOwner", "Id": 1058, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPAzureADGroupOwner", + "Rank": 1, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1059, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Rank": 1 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1060, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Rank": 2 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1061, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 3, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1062, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 4, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "CommandName": "Remove-PnPContainer", "Id": 1063, - "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", - "Rank": 1 + "CommandName": "Remove-PnPContainer", + "Rank": 1, + "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { - "CommandName": "Remove-PnPContainer", "Id": 1064, - "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", - "Rank": 2 + "CommandName": "Remove-PnPContainer", + "Rank": 2, + "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" }, { - "CommandName": "Remove-PnPContainerType", "Id": 1065, - "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6", - "Rank": 1 + "CommandName": "Remove-PnPContainerType", + "Rank": 1, + "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6" }, { - "CommandName": "Remove-PnPContentType", "Id": 1066, - "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1 + "CommandName": "Remove-PnPContentType", + "Rank": 1, + "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "CommandName": "Remove-PnPContentType", "Id": 1067, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2 + "CommandName": "Remove-PnPContentType", + "Rank": 2, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1068, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1 + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 1, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1069, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2 + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 2, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "CommandName": "Remove-PnPContentTypeFromList", "Id": 1070, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1 + "CommandName": "Remove-PnPContentTypeFromList", + "Rank": 1, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "CommandName": "Remove-PnPCustomAction", "Id": 1071, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "CommandName": "Remove-PnPCustomAction", + "Rank": 1, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "CommandName": "Remove-PnPCustomAction", "Id": 1072, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2 + "CommandName": "Remove-PnPCustomAction", + "Rank": 2, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "CommandName": "Remove-PnPCustomAction", "Id": 1073, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3 + "CommandName": "Remove-PnPCustomAction", + "Rank": 3, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Id": 1074, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1 + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Rank": 1, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "CommandName": "Remove-PnPEventReceiver", "Id": 1075, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 1, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "CommandName": "Remove-PnPEventReceiver", "Id": 1076, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 2, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "CommandName": "Remove-PnPEventReceiver", "Id": 1077, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 3, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", "Id": 1078, - "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 4, + "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "CommandName": "Remove-PnPEventReceiver", "Id": 1079, - "Command": "Remove-PnPEventReceiver", - "Rank": 5 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 5, + "Command": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", "Id": 1080, - "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 6, + "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "CommandName": "Remove-PnPEventReceiver", "Id": 1081, - "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 7, + "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "CommandName": "Remove-PnPEventReceiver", "Id": 1082, - "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 8, + "Command": "Remove-PnPEventReceiver -Scope All" }, { - "CommandName": "Remove-PnPField", "Id": 1083, - "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1 + "CommandName": "Remove-PnPField", + "Rank": 1, + "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "CommandName": "Remove-PnPField", "Id": 1084, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2 + "CommandName": "Remove-PnPField", + "Rank": 2, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "CommandName": "Remove-PnPFieldFromContentType", "Id": 1085, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1 + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 1, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "CommandName": "Remove-PnPFieldFromContentType", "Id": 1086, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2 + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 2, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "CommandName": "Remove-PnPFile", "Id": 1087, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1 + "CommandName": "Remove-PnPFile", + "Rank": 1, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "CommandName": "Remove-PnPFile", "Id": 1088, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2 + "CommandName": "Remove-PnPFile", + "Rank": 2, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "CommandName": "Remove-PnPFile", "Id": 1089, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3 + "CommandName": "Remove-PnPFile", + "Rank": 3, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "CommandName": "Remove-PnPFileFromSiteTemplate", "Id": 1090, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1 + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Rank": 1, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "CommandName": "Remove-PnPFileSharingLink", "Id": 1091, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 1, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "CommandName": "Remove-PnPFileSharingLink", "Id": 1092, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2 + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 2, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "CommandName": "Remove-PnPFileVersion", "Id": 1093, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1 + "CommandName": "Remove-PnPFileVersion", + "Rank": 1, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "CommandName": "Remove-PnPFileVersion", "Id": 1094, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2 + "CommandName": "Remove-PnPFileVersion", + "Rank": 2, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "CommandName": "Remove-PnPFileVersion", "Id": 1095, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3 + "CommandName": "Remove-PnPFileVersion", + "Rank": 3, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "CommandName": "Remove-PnPFlowOwner", "Id": 1096, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "Rank": 1 + "CommandName": "Remove-PnPFlowOwner", + "Rank": 1, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "CommandName": "Remove-PnPFlowOwner", "Id": 1097, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "Rank": 2 + "CommandName": "Remove-PnPFlowOwner", + "Rank": 2, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "CommandName": "Remove-PnPFlowOwner", "Id": 1098, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "Rank": 3 + "CommandName": "Remove-PnPFlowOwner", + "Rank": 3, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "CommandName": "Remove-PnPFlowOwner", "Id": 1099, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "Rank": 4 + "CommandName": "Remove-PnPFlowOwner", + "Rank": 4, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "CommandName": "Remove-PnPFolder", "Id": 1100, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1 + "CommandName": "Remove-PnPFolder", + "Rank": 1, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "CommandName": "Remove-PnPFolder", "Id": 1101, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2 + "CommandName": "Remove-PnPFolder", + "Rank": 2, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "CommandName": "Remove-PnPFolderSharingLink", "Id": 1102, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 1, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "CommandName": "Remove-PnPFolderSharingLink", "Id": 1103, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2 + "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 2, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "CommandName": "Remove-PnPGraphSubscription", "Id": 1104, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1 + "CommandName": "Remove-PnPGraphSubscription", + "Rank": 1, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "CommandName": "Remove-PnPGroup", "Id": 1105, - "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1 + "CommandName": "Remove-PnPGroup", + "Rank": 1, + "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "CommandName": "Remove-PnPGroupMember", "Id": 1106, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1 + "CommandName": "Remove-PnPGroupMember", + "Rank": 1, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "CommandName": "Remove-PnPHomeSite", "Id": 1107, - "Command": "Remove-PnPHomeSite", - "Rank": 1 + "CommandName": "Remove-PnPHomeSite", + "Rank": 1, + "Command": "Remove-PnPHomeSite" }, { - "CommandName": "Remove-PnPHubSiteAssociation", "Id": 1108, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1 + "CommandName": "Remove-PnPHubSiteAssociation", + "Rank": 1, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1109, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1 + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 1, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1110, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2 + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 2, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "CommandName": "Remove-PnPIndexedProperty", "Id": 1111, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1 + "CommandName": "Remove-PnPIndexedProperty", + "Rank": 1, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "CommandName": "Remove-PnPJavaScriptLink", "Id": 1112, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1 + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 1, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "CommandName": "Remove-PnPJavaScriptLink", "Id": 1113, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2 + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 2, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "CommandName": "Remove-PnPJavaScriptLink", "Id": 1114, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3 + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 3, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "CommandName": "Remove-PnPJavaScriptLink", "Id": 1115, - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4 + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 4, + "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "CommandName": "Remove-PnPJavaScriptLink", "Id": 1116, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5 + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 5, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "CommandName": "Remove-PnPKnowledgeHubSite", "Id": 1117, - "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1 + "CommandName": "Remove-PnPKnowledgeHubSite", + "Rank": 1, + "Command": "Remove-PnPKnowledgeHubSite" }, { - "CommandName": "Remove-PnPList", "Id": 1118, - "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1 + "CommandName": "Remove-PnPList", + "Rank": 1, + "Command": "Remove-PnPList -Identity Announcements" }, { - "CommandName": "Remove-PnPList", "Id": 1119, - "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2 + "CommandName": "Remove-PnPList", + "Rank": 2, + "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "CommandName": "Remove-PnPList", "Id": 1120, - "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3 + "CommandName": "Remove-PnPList", + "Rank": 3, + "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "CommandName": "Remove-PnPList", "Id": 1121, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4 + "CommandName": "Remove-PnPList", + "Rank": 4, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "CommandName": "Remove-PnPListDesign", "Id": 1122, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Remove-PnPListDesign", + "Rank": 1, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Remove-PnPListItem", "Id": 1123, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1 + "CommandName": "Remove-PnPListItem", + "Rank": 1, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "CommandName": "Remove-PnPListItem", "Id": 1124, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2 + "CommandName": "Remove-PnPListItem", + "Rank": 2, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "CommandName": "Remove-PnPListItem", "Id": 1125, - "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3 + "CommandName": "Remove-PnPListItem", + "Rank": 3, + "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "CommandName": "Remove-PnPListItemAttachment", "Id": 1126, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1 + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 1, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "CommandName": "Remove-PnPListItemAttachment", "Id": 1127, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Rank": 2 + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 2, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "CommandName": "Remove-PnPListItemAttachment", "Id": 1128, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Rank": 3 + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 3, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "CommandName": "Remove-PnPListItemAttachment", "Id": 1129, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Rank": 4 + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 4, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "CommandName": "Remove-PnPListItemAttachment", "Id": 1130, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5 + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 5, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "CommandName": "Remove-PnPListItemVersion", "Id": 1131, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1 + "CommandName": "Remove-PnPListItemVersion", + "Rank": 1, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "CommandName": "Remove-PnPListItemVersion", "Id": 1132, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2 + "CommandName": "Remove-PnPListItemVersion", + "Rank": 2, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1133, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1134, - "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2 + "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 2, + "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Id": 1135, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Id": 1136, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPMicrosoft365GroupPhoto", "Id": 1137, - "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365GroupPhoto", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"" }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1138, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1139, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2 + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "CommandName": "Remove-PnPNavigationNode", "Id": 1140, - "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1 + "CommandName": "Remove-PnPNavigationNode", + "Rank": 1, + "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "CommandName": "Remove-PnPNavigationNode", "Id": 1141, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2 + "CommandName": "Remove-PnPNavigationNode", + "Rank": 2, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "CommandName": "Remove-PnPNavigationNode", "Id": 1142, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3 + "CommandName": "Remove-PnPNavigationNode", + "Rank": 3, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1143, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1 + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 1, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1144, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2 + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 2, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1145, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3 + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 3, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "CommandName": "Remove-PnPOrgNewsSite", "Id": 1146, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1 + "CommandName": "Remove-PnPOrgNewsSite", + "Rank": 1, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "CommandName": "Remove-PnPPage", "Id": 1147, - "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1 + "CommandName": "Remove-PnPPage", + "Rank": 1, + "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "CommandName": "Remove-PnPPage", "Id": 1148, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2 + "CommandName": "Remove-PnPPage", + "Rank": 2, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "CommandName": "Remove-PnPPage", "Id": 1149, - "Command": "Remove-PnPPage $page", - "Rank": 3 + "CommandName": "Remove-PnPPage", + "Rank": 3, + "Command": "Remove-PnPPage $page" }, { - "CommandName": "Remove-PnPPage", "Id": 1150, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4 + "CommandName": "Remove-PnPPage", + "Rank": 4, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "CommandName": "Remove-PnPPageComponent", "Id": 1151, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "CommandName": "Remove-PnPPageComponent", + "Rank": 1, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "CommandName": "Remove-PnPPlannerBucket", "Id": 1152, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1 + "CommandName": "Remove-PnPPlannerBucket", + "Rank": 1, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "CommandName": "Remove-PnPPlannerPlan", "Id": 1153, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1 + "CommandName": "Remove-PnPPlannerPlan", + "Rank": 1, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "CommandName": "Remove-PnPPlannerRoster", "Id": 1154, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1 + "CommandName": "Remove-PnPPlannerRoster", + "Rank": 1, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "CommandName": "Remove-PnPPlannerRosterMember", "Id": 1155, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPPlannerRosterMember", + "Rank": 1, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPPlannerTask", "Id": 1156, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1 + "CommandName": "Remove-PnPPlannerTask", + "Rank": 1, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "CommandName": "Remove-PnPPropertyBagValue", "Id": 1157, - "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1 + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 1, + "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "CommandName": "Remove-PnPPropertyBagValue", "Id": 1158, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2 + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 2, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "CommandName": "Remove-PnPPropertyBagValue", "Id": 1159, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3 + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 3, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "CommandName": "Remove-PnPPublishingImageRendition", "Id": 1160, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1 + "CommandName": "Remove-PnPPublishingImageRendition", + "Rank": 1, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "CommandName": "Remove-PnPRoleDefinition", "Id": 1161, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1 + "CommandName": "Remove-PnPRoleDefinition", + "Rank": 1, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "CommandName": "Remove-PnPSdnProvider", "Id": 1162, - "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1 + "CommandName": "Remove-PnPSdnProvider", + "Rank": 1, + "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "CommandName": "Remove-PnPSearchConfiguration", "Id": 1163, - "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1 + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 1, + "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "CommandName": "Remove-PnPSearchConfiguration", "Id": 1164, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2 + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 2, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "CommandName": "Remove-PnPSearchConfiguration", "Id": 1165, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3 + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 3, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "CommandName": "Remove-PnPSearchConfiguration", "Id": 1166, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 4, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1167, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 1, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1168, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2 + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 2, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Id": 1169, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1 + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Rank": 1, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "CommandName": "Remove-PnPSiteCollectionTermStore", "Id": 1170, - "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1 + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Rank": 1, + "Command": "Remove-PnPSiteCollectionTermStore" }, { - "CommandName": "Remove-PnPSiteDesign", "Id": 1171, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Remove-PnPSiteDesign", + "Rank": 1, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Remove-PnPSiteDesignTask", "Id": 1172, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Remove-PnPSiteDesignTask", + "Rank": 1, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Remove-PnPSiteGroup", "Id": 1173, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "CommandName": "Remove-PnPSiteGroup", + "Rank": 1, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "CommandName": "Remove-PnPSiteGroup", "Id": 1174, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2 + "CommandName": "Remove-PnPSiteGroup", + "Rank": 2, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "CommandName": "Remove-PnPSiteScript", "Id": 1175, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Remove-PnPSiteScript", + "Rank": 1, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Remove-PnPSiteUserInvitations", "Id": 1176, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1 + "CommandName": "Remove-PnPSiteUserInvitations", + "Rank": 1, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "CommandName": "Remove-PnPStorageEntity", "Id": 1177, - "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1 + "CommandName": "Remove-PnPStorageEntity", + "Rank": 1, + "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "CommandName": "Remove-PnPStorageEntity", "Id": 1178, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2 + "CommandName": "Remove-PnPStorageEntity", + "Rank": 2, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "CommandName": "Remove-PnPStoredCredential", "Id": 1179, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1 + "CommandName": "Remove-PnPStoredCredential", + "Rank": 1, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "CommandName": "Remove-PnPTaxonomyItem", "Id": 1180, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1 + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 1, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "CommandName": "Remove-PnPTaxonomyItem", "Id": 1181, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2 + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 2, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "CommandName": "Remove-PnPTeamsApp", "Id": 1182, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1 + "CommandName": "Remove-PnPTeamsApp", + "Rank": 1, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "CommandName": "Remove-PnPTeamsApp", "Id": 1183, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2 + "CommandName": "Remove-PnPTeamsApp", + "Rank": 2, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "CommandName": "Remove-PnPTeamsChannel", "Id": 1184, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1 + "CommandName": "Remove-PnPTeamsChannel", + "Rank": 1, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1185, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Rank": 1 + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 1, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1186, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 2 + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 2, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1187, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Rank": 3 + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 3, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "CommandName": "Remove-PnPTeamsTab", "Id": 1188, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Rank": 1 + "CommandName": "Remove-PnPTeamsTab", + "Rank": 1, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "CommandName": "Remove-PnPTeamsTab", "Id": 1189, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Rank": 2 + "CommandName": "Remove-PnPTeamsTab", + "Rank": 2, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "CommandName": "Remove-PnPTeamsTab", "Id": 1190, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "Rank": 3 + "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" }, { - "CommandName": "Remove-PnPTeamsTag", "Id": 1191, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 1 + "CommandName": "Remove-PnPTeamsTag", + "Rank": 1, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "CommandName": "Remove-PnPTeamsTeam", "Id": 1192, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1 + "CommandName": "Remove-PnPTeamsTeam", + "Rank": 1, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "CommandName": "Remove-PnPTeamsTeam", "Id": 1193, - "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2 + "CommandName": "Remove-PnPTeamsTeam", + "Rank": 2, + "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "CommandName": "Remove-PnPTeamsUser", "Id": 1194, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1 + "CommandName": "Remove-PnPTeamsUser", + "Rank": 1, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "CommandName": "Remove-PnPTeamsUser", "Id": 1195, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2 + "CommandName": "Remove-PnPTeamsUser", + "Rank": 2, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "CommandName": "Remove-PnPTenantCdnOrigin", "Id": 1196, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1 + "CommandName": "Remove-PnPTenantCdnOrigin", + "Rank": 1, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1197, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 1, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1198, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2 + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 2, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "CommandName": "Remove-PnPTenantSite", "Id": 1199, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "CommandName": "Remove-PnPTenantSite", + "Rank": 1, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Remove-PnPTenantSite", "Id": 1200, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2 + "CommandName": "Remove-PnPTenantSite", + "Rank": 2, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "CommandName": "Remove-PnPTenantSite", "Id": 1201, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Rank": 3 + "CommandName": "Remove-PnPTenantSite", + "Rank": 3, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Id": 1202, - "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1 + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1, + "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "CommandName": "Remove-PnPTenantTheme", "Id": 1203, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1 + "CommandName": "Remove-PnPTenantTheme", + "Rank": 1, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "CommandName": "Remove-PnPTerm", "Id": 1204, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1 + "CommandName": "Remove-PnPTerm", + "Rank": 1, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "CommandName": "Remove-PnPTerm", "Id": 1205, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "CommandName": "Remove-PnPTerm", + "Rank": 2, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Remove-PnPTermGroup", "Id": 1206, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1 + "CommandName": "Remove-PnPTermGroup", + "Rank": 1, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "CommandName": "Remove-PnPTermGroup", "Id": 1207, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2 + "CommandName": "Remove-PnPTermGroup", + "Rank": 2, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "CommandName": "Remove-PnPTermGroup", "Id": 1208, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3 + "CommandName": "Remove-PnPTermGroup", + "Rank": 3, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "CommandName": "Remove-PnPTermLabel", "Id": 1209, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1 + "CommandName": "Remove-PnPTermLabel", + "Rank": 1, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "CommandName": "Remove-PnPTermLabel", "Id": 1210, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "CommandName": "Remove-PnPTermLabel", + "Rank": 2, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Remove-PnPUser", "Id": 1211, - "Command": "Remove-PnPUser -Identity 23", - "Rank": 1 + "CommandName": "Remove-PnPUser", + "Rank": 1, + "Command": "Remove-PnPUser -Identity 23" }, { - "CommandName": "Remove-PnPUser", "Id": 1212, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2 + "CommandName": "Remove-PnPUser", + "Rank": 2, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "CommandName": "Remove-PnPUser", "Id": 1213, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Rank": 3 + "CommandName": "Remove-PnPUser", + "Rank": 3, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "CommandName": "Remove-PnPUserInfo", "Id": 1214, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1 + "CommandName": "Remove-PnPUserInfo", + "Rank": 1, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "CommandName": "Remove-PnPUserProfile", "Id": 1215, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1 + "CommandName": "Remove-PnPUserProfile", + "Rank": 1, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "CommandName": "Remove-PnPView", "Id": 1216, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1 + "CommandName": "Remove-PnPView", + "Rank": 1, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Id": 1217, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1 + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Rank": 1, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "CommandName": "Remove-PnPWeb", "Id": 1218, - "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1 + "CommandName": "Remove-PnPWeb", + "Rank": 1, + "Command": "Remove-PnPWeb -Identity projectA" }, { - "CommandName": "Remove-PnPWeb", "Id": 1219, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2 + "CommandName": "Remove-PnPWeb", + "Rank": 2, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "CommandName": "Remove-PnPWebhookSubscription", "Id": 1220, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1 + "CommandName": "Remove-PnPWebhookSubscription", + "Rank": 1, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "CommandName": "Remove-PnPWebPart", "Id": 1221, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "CommandName": "Remove-PnPWebPart", + "Rank": 1, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "CommandName": "Remove-PnPWebPart", "Id": 1222, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Rank": 2 + "CommandName": "Remove-PnPWebPart", + "Rank": 2, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "CommandName": "Remove-PnPWikiPage", "Id": 1223, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1 + "CommandName": "Remove-PnPWikiPage", + "Rank": 1, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "CommandName": "Rename-PnPFile", "Id": 1224, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1 + "CommandName": "Rename-PnPFile", + "Rank": 1, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "CommandName": "Rename-PnPFile", "Id": 1225, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2 + "CommandName": "Rename-PnPFile", + "Rank": 2, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "CommandName": "Rename-PnPFile", "Id": 1226, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Rank": 3 + "CommandName": "Rename-PnPFile", + "Rank": 3, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "CommandName": "Rename-PnPFolder", "Id": 1227, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1 + "CommandName": "Rename-PnPFolder", + "Rank": 1, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "CommandName": "Repair-PnPSite", "Id": 1228, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "CommandName": "Repair-PnPSite", + "Rank": 1, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "CommandName": "Repair-PnPSite", "Id": 1229, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2 + "CommandName": "Repair-PnPSite", + "Rank": 2, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "CommandName": "Request-PnPAccessToken", "Id": 1230, - "Command": "Request-PnPAccessToken", - "Rank": 1 + "CommandName": "Request-PnPAccessToken", + "Rank": 1, + "Command": "Request-PnPAccessToken" }, { - "CommandName": "Request-PnPAccessToken", "Id": 1231, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2 + "CommandName": "Request-PnPAccessToken", + "Rank": 2, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "CommandName": "Request-PnPAccessToken", "Id": 1232, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3 + "CommandName": "Request-PnPAccessToken", + "Rank": 3, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "CommandName": "Request-PnPAccessToken", "Id": 1233, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Rank": 4 + "CommandName": "Request-PnPAccessToken", + "Rank": 4, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "CommandName": "Request-PnPPersonalSite", "Id": 1234, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Rank": 1 + "CommandName": "Request-PnPPersonalSite", + "Rank": 1, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "CommandName": "Request-PnPPersonalSite", "Id": 1235, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2 + "CommandName": "Request-PnPPersonalSite", + "Rank": 2, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "CommandName": "Request-PnPReIndexList", "Id": 1236, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1 + "CommandName": "Request-PnPReIndexList", + "Rank": 1, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "CommandName": "Request-PnPReIndexWeb", "Id": 1237, - "Command": "Request-PnPReIndexWeb", - "Rank": 1 + "CommandName": "Request-PnPReIndexWeb", + "Rank": 1, + "Command": "Request-PnPReIndexWeb" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1238, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1 + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 1, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1239, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2 + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 2, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1240, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3 + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 3, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "CommandName": "Reset-PnPFileVersion", "Id": 1241, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1 + "CommandName": "Reset-PnPFileVersion", + "Rank": 1, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "CommandName": "Reset-PnPFileVersion", "Id": 1242, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Rank": 2 + "CommandName": "Reset-PnPFileVersion", + "Rank": 2, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "CommandName": "Reset-PnPLabel", "Id": 1243, - "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1 + "CommandName": "Reset-PnPLabel", + "Rank": 1, + "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "CommandName": "Reset-PnPLabel", "Id": 1244, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2 + "CommandName": "Reset-PnPLabel", + "Rank": 2, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1245, - "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1 + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1, + "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Id": 1246, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1 + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Rank": 1, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "CommandName": "Resolve-PnPFolder", "Id": 1247, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1 + "CommandName": "Resolve-PnPFolder", + "Rank": 1, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "CommandName": "Restore-PnPDeletedContainer", "Id": 1248, - "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", - "Rank": 1 + "CommandName": "Restore-PnPDeletedContainer", + "Rank": 1, + "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Id": 1249, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1 + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Rank": 1, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "CommandName": "Restore-PnPFileVersion", "Id": 1250, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1 + "CommandName": "Restore-PnPFileVersion", + "Rank": 1, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "CommandName": "Restore-PnPFileVersion", "Id": 1251, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2 + "CommandName": "Restore-PnPFileVersion", + "Rank": 2, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "CommandName": "Restore-PnPFileVersion", "Id": 1252, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3 + "CommandName": "Restore-PnPFileVersion", + "Rank": 3, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "CommandName": "Restore-PnPListItemVersion", "Id": 1253, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1 + "CommandName": "Restore-PnPListItemVersion", + "Rank": 1, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "CommandName": "Restore-PnPListItemVersion", "Id": 1254, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2 + "CommandName": "Restore-PnPListItemVersion", + "Rank": 2, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "CommandName": "Restore-PnPRecycleBinItem", "Id": 1255, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1 + "CommandName": "Restore-PnPRecycleBinItem", + "Rank": 1, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1256, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 1, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1257, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2 + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 2, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "CommandName": "Restore-PnPTenantSite", "Id": 1258, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "CommandName": "Restore-PnPTenantSite", + "Rank": 1, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Restore-PnPTenantSite", "Id": 1259, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2 + "CommandName": "Restore-PnPTenantSite", + "Rank": 2, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "CommandName": "Restore-PnPTenantSite", "Id": 1260, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Rank": 3 + "CommandName": "Restore-PnPTenantSite", + "Rank": 3, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Id": 1261, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1 + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Rank": 1, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "CommandName": "Revoke-PnPHubSiteRights", "Id": 1262, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "CommandName": "Revoke-PnPHubSiteRights", + "Rank": 1, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "CommandName": "Revoke-PnPSiteDesignRights", "Id": 1263, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "CommandName": "Revoke-PnPSiteDesignRights", + "Rank": 1, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Id": 1264, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1 + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Rank": 1, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "CommandName": "Revoke-PnPUserSession", "Id": 1265, - "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1 + "CommandName": "Revoke-PnPUserSession", + "Rank": 1, + "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "CommandName": "Save-PnPPageConversionLog", "Id": 1266, - "Command": "Save-PnPPageConversionLog", - "Rank": 1 + "CommandName": "Save-PnPPageConversionLog", + "Rank": 1, + "Command": "Save-PnPPageConversionLog" }, { - "CommandName": "Save-PnPSiteTemplate", "Id": 1267, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1 + "CommandName": "Save-PnPSiteTemplate", + "Rank": 1, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "CommandName": "Save-PnPTenantTemplate", "Id": 1268, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1 + "CommandName": "Save-PnPTenantTemplate", + "Rank": 1, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "CommandName": "Send-PnPMail", "Id": 1269, - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Rank": 1 + "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\"" }, { - "CommandName": "Send-PnPMail", "Id": 1270, - "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", - "Rank": 2 + "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" }, { - "CommandName": "Send-PnPMail", "Id": 1271, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Rank": 3 + "CommandName": "Send-PnPMail", + "Rank": 3, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "CommandName": "Send-PnPMail", "Id": 1272, - "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", - "Rank": 4 + "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" }, { - "CommandName": "Send-PnPMail", "Id": 1273, - "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", - "Rank": 5 + "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" }, { - "CommandName": "Send-PnPMail", "Id": 1274, - "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\"", - "Rank": 6 + "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\"" }, { - "CommandName": "Set-PnPAdaptiveScopeProperty", "Id": 1275, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1 + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Rank": 1, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "CommandName": "Set-PnPApplicationCustomizer", "Id": 1276, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "CommandName": "Set-PnPApplicationCustomizer", + "Rank": 1, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "CommandName": "Set-PnPApplicationCustomizer", "Id": 1277, - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Rank": 2 + "CommandName": "Set-PnPApplicationCustomizer", + "Rank": 2, + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "CommandName": "Set-PnPAppSideLoading", "Id": 1278, - "Command": "Set-PnPAppSideLoading -On", - "Rank": 1 + "CommandName": "Set-PnPAppSideLoading", + "Rank": 1, + "Command": "Set-PnPAppSideLoading -On" }, { - "CommandName": "Set-PnPAppSideLoading", "Id": 1279, - "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2 + "CommandName": "Set-PnPAppSideLoading", + "Rank": 2, + "Command": "Set-PnPAppSideLoading -Off" }, { - "CommandName": "Set-PnPAuditing", "Id": 1280, - "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1 + "CommandName": "Set-PnPAuditing", + "Rank": 1, + "Command": "Set-PnPAuditing -EnableAll" }, { - "CommandName": "Set-PnPAuditing", "Id": 1281, - "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2 + "CommandName": "Set-PnPAuditing", + "Rank": 2, + "Command": "Set-PnPAuditing -DisableAll" }, { - "CommandName": "Set-PnPAuditing", "Id": 1282, - "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3 + "CommandName": "Set-PnPAuditing", + "Rank": 3, + "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "CommandName": "Set-PnPAuditing", "Id": 1283, - "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4 + "CommandName": "Set-PnPAuditing", + "Rank": 4, + "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "CommandName": "Set-PnPAuditing", "Id": 1284, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5 + "CommandName": "Set-PnPAuditing", + "Rank": 5, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "CommandName": "Set-PnPAvailablePageLayouts", "Id": 1285, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1 + "CommandName": "Set-PnPAvailablePageLayouts", + "Rank": 1, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1286, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1 + "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 1, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1287, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2 + "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 2, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "CommandName": "Set-PnPAzureADGroup", "Id": 1288, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1 + "CommandName": "Set-PnPAzureADGroup", + "Rank": 1, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "CommandName": "Set-PnPAzureADGroup", "Id": 1289, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2 + "CommandName": "Set-PnPAzureADGroup", + "Rank": 2, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "CommandName": "Set-PnPAzureADGroup", "Id": 1290, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3 + "CommandName": "Set-PnPAzureADGroup", + "Rank": 3, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1291, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Rank": 1 + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 1, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1292, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Rank": 2 + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 2, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1293, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3 + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 3, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1294, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1 + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 1, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1295, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2 + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 2, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1296, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 1, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1297, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 2, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1298, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 3, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1299, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 4, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "CommandName": "Set-PnPContentType", "Id": 1300, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1 + "CommandName": "Set-PnPContentType", + "Rank": 1, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "CommandName": "Set-PnPContentType", "Id": 1301, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Rank": 2 + "CommandName": "Set-PnPContentType", + "Rank": 2, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "CommandName": "Set-PnPContentType", "Id": 1302, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 3 + "CommandName": "Set-PnPContentType", + "Rank": 3, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "CommandName": "Set-PnPContentType", "Id": 1303, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Rank": 4 + "CommandName": "Set-PnPContentType", + "Rank": 4, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "CommandName": "Set-PnPContentType", "Id": 1304, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Rank": 5 + "CommandName": "Set-PnPContentType", + "Rank": 5, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "CommandName": "Set-PnPDefaultColumnValues", "Id": 1305, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Rank": 1 + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 1, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "CommandName": "Set-PnPDefaultColumnValues", "Id": 1306, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Rank": 2 + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 2, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "CommandName": "Set-PnPDefaultColumnValues", "Id": 1307, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Rank": 3 + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 3, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "CommandName": "Set-PnPDefaultColumnValues", "Id": 1308, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Rank": 4 + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 4, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "CommandName": "Set-PnPDefaultContentTypeToList", "Id": 1309, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1 + "CommandName": "Set-PnPDefaultContentTypeToList", + "Rank": 1, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "CommandName": "Set-PnPDefaultPageLayout", "Id": 1310, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1 + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 1, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "CommandName": "Set-PnPDefaultPageLayout", "Id": 1311, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2 + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 2, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "CommandName": "Set-PnPDefaultPageLayout", "Id": 1312, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3 + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 3, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1313, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1 + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 1, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1314, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2 + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 2, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1315, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 3 + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 3, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "CommandName": "Set-PnPDocumentSetField", "Id": 1316, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Rank": 1 + "CommandName": "Set-PnPDocumentSetField", + "Rank": 1, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "CommandName": "Set-PnPDocumentSetField", "Id": 1317, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Rank": 2 + "CommandName": "Set-PnPDocumentSetField", + "Rank": 2, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "CommandName": "Set-PnPField", "Id": 1318, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Rank": 1 + "CommandName": "Set-PnPField", + "Rank": 1, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "CommandName": "Set-PnPField", "Id": 1319, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Rank": 2 + "CommandName": "Set-PnPField", + "Rank": 2, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "CommandName": "Set-PnPField", "Id": 1320, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Rank": 3 + "CommandName": "Set-PnPField", + "Rank": 3, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "CommandName": "Set-PnPFileCheckedIn", "Id": 1321, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1 + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 1, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "CommandName": "Set-PnPFileCheckedIn", "Id": 1322, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2 + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 2, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "CommandName": "Set-PnPFileCheckedOut", "Id": 1323, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1 + "CommandName": "Set-PnPFileCheckedOut", + "Rank": 1, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { - "CommandName": "Set-PnPFolderPermission", "Id": 1324, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "CommandName": "Set-PnPFolderPermission", + "Rank": 1, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "CommandName": "Set-PnPFolderPermission", "Id": 1325, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "CommandName": "Set-PnPFolderPermission", + "Rank": 2, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "CommandName": "Set-PnPFolderPermission", "Id": 1326, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3 + "CommandName": "Set-PnPFolderPermission", + "Rank": 3, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "CommandName": "Set-PnPFooter", "Id": 1327, - "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1 + "CommandName": "Set-PnPFooter", + "Rank": 1, + "Command": "Set-PnPFooter -Enabled:$true" }, { - "CommandName": "Set-PnPFooter", "Id": 1328, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2 + "CommandName": "Set-PnPFooter", + "Rank": 2, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "CommandName": "Set-PnPFooter", "Id": 1329, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3 + "CommandName": "Set-PnPFooter", + "Rank": 3, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "CommandName": "Set-PnPFooter", "Id": 1330, - "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4 + "CommandName": "Set-PnPFooter", + "Rank": 4, + "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "CommandName": "Set-PnPGraphSubscription", "Id": 1331, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1 + "CommandName": "Set-PnPGraphSubscription", + "Rank": 1, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "CommandName": "Set-PnPGroup", "Id": 1332, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Rank": 1 + "CommandName": "Set-PnPGroup", + "Rank": 1, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "CommandName": "Set-PnPGroup", "Id": 1333, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2 + "CommandName": "Set-PnPGroup", + "Rank": 2, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "CommandName": "Set-PnPGroupPermissions", "Id": 1334, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1 + "CommandName": "Set-PnPGroupPermissions", + "Rank": 1, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "CommandName": "Set-PnPGroupPermissions", "Id": 1335, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2 + "CommandName": "Set-PnPGroupPermissions", + "Rank": 2, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "CommandName": "Set-PnPGroupPermissions", "Id": 1336, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3 + "CommandName": "Set-PnPGroupPermissions", + "Rank": 3, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "CommandName": "Set-PnPGroupPermissions", "Id": 1337, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4 + "CommandName": "Set-PnPGroupPermissions", + "Rank": 4, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "CommandName": "Set-PnPGroupPermissions", "Id": 1338, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5 + "CommandName": "Set-PnPGroupPermissions", + "Rank": 5, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "CommandName": "Set-PnPHideDefaultThemes", "Id": 1339, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1 + "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 1, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "CommandName": "Set-PnPHideDefaultThemes", "Id": 1340, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2 + "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 2, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "CommandName": "Set-PnPHomePage", "Id": 1341, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1 + "CommandName": "Set-PnPHomePage", + "Rank": 1, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "CommandName": "Set-PnPHomePage", "Id": 1342, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2 + "CommandName": "Set-PnPHomePage", + "Rank": 2, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "CommandName": "Set-PnPHomeSite", "Id": 1343, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1 + "CommandName": "Set-PnPHomeSite", + "Rank": 1, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "CommandName": "Set-PnPHomeSite", "Id": 1344, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2 + "CommandName": "Set-PnPHomeSite", + "Rank": 2, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "CommandName": "Set-PnPHubSite", "Id": 1345, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Rank": 1 + "CommandName": "Set-PnPHubSite", + "Rank": 1, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "CommandName": "Set-PnPHubSite", "Id": 1346, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Rank": 2 + "CommandName": "Set-PnPHubSite", + "Rank": 2, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "CommandName": "Set-PnPHubSite", "Id": 1347, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Rank": 3 + "CommandName": "Set-PnPHubSite", + "Rank": 3, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "CommandName": "Set-PnPHubSite", "Id": 1348, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Rank": 4 + "CommandName": "Set-PnPHubSite", + "Rank": 4, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "CommandName": "Set-PnPHubSite", "Id": 1349, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Rank": 5 + "CommandName": "Set-PnPHubSite", + "Rank": 5, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "CommandName": "Set-PnPHubSite", "Id": 1350, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Rank": 6 + "CommandName": "Set-PnPHubSite", + "Rank": 6, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "CommandName": "Set-PnPImageListItemColumn", "Id": 1351, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 1 + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 1, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "CommandName": "Set-PnPImageListItemColumn", "Id": 1352, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Rank": 2 + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 2, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "CommandName": "Set-PnPIndexedProperties", "Id": 1353, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1 + "CommandName": "Set-PnPIndexedProperties", + "Rank": 1, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1354, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1 + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 1, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1355, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2 + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 2, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "CommandName": "Set-PnPKnowledgeHubSite", "Id": 1356, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1 + "CommandName": "Set-PnPKnowledgeHubSite", + "Rank": 1, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "CommandName": "Set-PnPLabel", "Id": 1357, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1 + "CommandName": "Set-PnPLabel", + "Rank": 1, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "CommandName": "Set-PnPLabel", "Id": 1358, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2 + "CommandName": "Set-PnPLabel", + "Rank": 2, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "CommandName": "Set-PnPList", "Id": 1359, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1 + "CommandName": "Set-PnPList", + "Rank": 1, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "CommandName": "Set-PnPList", "Id": 1360, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2 + "CommandName": "Set-PnPList", + "Rank": 2, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "CommandName": "Set-PnPList", "Id": 1361, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3 + "CommandName": "Set-PnPList", + "Rank": 3, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "CommandName": "Set-PnPList", "Id": 1362, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4 + "CommandName": "Set-PnPList", + "Rank": 4, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "CommandName": "Set-PnPList", "Id": 1363, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Rank": 5 + "CommandName": "Set-PnPList", + "Rank": 5, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "CommandName": "Set-PnPList", "Id": 1364, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6 + "CommandName": "Set-PnPList", + "Rank": 6, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "CommandName": "Set-PnPList", "Id": 1365, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7 + "CommandName": "Set-PnPList", + "Rank": 7, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "CommandName": "Set-PnPList", "Id": 1366, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8 + "CommandName": "Set-PnPList", + "Rank": 8, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "CommandName": "Set-PnPList", "Id": 1367, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9 + "CommandName": "Set-PnPList", + "Rank": 9, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "CommandName": "Set-PnPList", "Id": 1368, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Rank": 10 + "CommandName": "Set-PnPList", + "Rank": 10, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "CommandName": "Set-PnPList", "Id": 1369, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11 + "CommandName": "Set-PnPList", + "Rank": 11, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1370, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1 + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 1, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1371, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2 + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 2, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "CommandName": "Set-PnPListItem", "Id": 1372, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1 + "CommandName": "Set-PnPListItem", + "Rank": 1, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "CommandName": "Set-PnPListItem", "Id": 1373, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2 + "CommandName": "Set-PnPListItem", + "Rank": 2, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "CommandName": "Set-PnPListItem", "Id": 1374, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 3 + "CommandName": "Set-PnPListItem", + "Rank": 3, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "CommandName": "Set-PnPListItem", "Id": 1375, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Rank": 4 + "CommandName": "Set-PnPListItem", + "Rank": 4, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "CommandName": "Set-PnPListItem", "Id": 1376, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Rank": 5 + "CommandName": "Set-PnPListItem", + "Rank": 5, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "CommandName": "Set-PnPListItemAsRecord", "Id": 1377, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 1, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "CommandName": "Set-PnPListItemAsRecord", "Id": 1378, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2 + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 2, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "CommandName": "Set-PnPListItemPermission", "Id": 1379, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "CommandName": "Set-PnPListItemPermission", + "Rank": 1, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "CommandName": "Set-PnPListItemPermission", "Id": 1380, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "CommandName": "Set-PnPListItemPermission", + "Rank": 2, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "CommandName": "Set-PnPListItemPermission", "Id": 1381, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3 + "CommandName": "Set-PnPListItemPermission", + "Rank": 3, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "CommandName": "Set-PnPListItemPermission", "Id": 1382, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4 + "CommandName": "Set-PnPListItemPermission", + "Rank": 4, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "CommandName": "Set-PnPListItemPermission", "Id": 1383, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Rank": 5 + "CommandName": "Set-PnPListItemPermission", + "Rank": 5, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "CommandName": "Set-PnPListPermission", "Id": 1384, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "CommandName": "Set-PnPListPermission", + "Rank": 1, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "CommandName": "Set-PnPListPermission", "Id": 1385, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "CommandName": "Set-PnPListPermission", + "Rank": 2, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "CommandName": "Set-PnPListRecordDeclaration", "Id": 1386, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1 + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 1, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "CommandName": "Set-PnPListRecordDeclaration", "Id": 1387, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2 + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 2, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "CommandName": "Set-PnPMasterPage", "Id": 1388, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1 + "CommandName": "Set-PnPMasterPage", + "Rank": 1, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "CommandName": "Set-PnPMasterPage", "Id": 1389, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 2 + "CommandName": "Set-PnPMasterPage", + "Rank": 2, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "CommandName": "Set-PnPMasterPage", "Id": 1390, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 3 + "CommandName": "Set-PnPMasterPage", + "Rank": 3, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "CommandName": "Set-PnPMasterPage", "Id": 1391, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4 + "CommandName": "Set-PnPMasterPage", + "Rank": 4, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1392, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1393, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1394, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1395, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1396, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1397, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1398, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1399, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1400, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1401, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1402, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1403, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1404, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1405, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1406, - "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1407, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1408, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1409, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1410, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 1, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1411, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 2, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1412, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 3, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1413, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 4, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1414, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 5, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1415, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 6, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1416, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1 + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1417, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2 + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1418, - "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1 + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 1, + "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1419, - "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2 + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 2, + "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "CommandName": "Set-PnPPage", "Id": 1420, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1 + "CommandName": "Set-PnPPage", + "Rank": 1, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "CommandName": "Set-PnPPage", "Id": 1421, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2 + "CommandName": "Set-PnPPage", + "Rank": 2, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "CommandName": "Set-PnPPage", "Id": 1422, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3 + "CommandName": "Set-PnPPage", + "Rank": 3, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "CommandName": "Set-PnPPage", "Id": 1423, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4 + "CommandName": "Set-PnPPage", + "Rank": 4, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "CommandName": "Set-PnPPage", "Id": 1424, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5 + "CommandName": "Set-PnPPage", + "Rank": 5, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "CommandName": "Set-PnPPage", "Id": 1425, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Rank": 6 + "CommandName": "Set-PnPPage", + "Rank": 6, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "CommandName": "Set-PnPPage", "Id": 1426, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7 + "CommandName": "Set-PnPPage", + "Rank": 7, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "CommandName": "Set-PnPPage", "Id": 1427, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Rank": 8 + "CommandName": "Set-PnPPage", + "Rank": 8, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "CommandName": "Set-PnPPage", "Id": 1428, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9 + "CommandName": "Set-PnPPage", + "Rank": 9, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "CommandName": "Set-PnPPage", "Id": 1429, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10 + "CommandName": "Set-PnPPage", + "Rank": 10, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "CommandName": "Set-PnPPage", "Id": 1430, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Rank": 11 + "CommandName": "Set-PnPPage", + "Rank": 11, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "CommandName": "Set-PnPPageTextPart", "Id": 1431, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1 + "CommandName": "Set-PnPPageTextPart", + "Rank": 1, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { - "CommandName": "Set-PnPPageWebPart", "Id": 1432, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Rank": 1 + "CommandName": "Set-PnPPageWebPart", + "Rank": 1, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { - "CommandName": "Set-PnPPageWebPart", "Id": 1433, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Rank": 2 + "CommandName": "Set-PnPPageWebPart", + "Rank": 2, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "CommandName": "Set-PnPPlannerBucket", "Id": 1434, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Rank": 1 + "CommandName": "Set-PnPPlannerBucket", + "Rank": 1, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "CommandName": "Set-PnPPlannerConfiguration", "Id": 1435, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1 + "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 1, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "CommandName": "Set-PnPPlannerConfiguration", "Id": 1436, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2 + "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 2, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "CommandName": "Set-PnPPlannerPlan", "Id": 1437, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1 + "CommandName": "Set-PnPPlannerPlan", + "Rank": 1, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { - "CommandName": "Set-PnPPlannerTask", "Id": 1438, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Rank": 1 + "CommandName": "Set-PnPPlannerTask", + "Rank": 1, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "CommandName": "Set-PnPPlannerTask", "Id": 1439, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Rank": 2 + "CommandName": "Set-PnPPlannerTask", + "Rank": 2, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "CommandName": "Set-PnPPlannerTask", "Id": 1440, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Rank": 3 + "CommandName": "Set-PnPPlannerTask", + "Rank": 3, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "CommandName": "Set-PnPPlannerUserPolicy", "Id": 1441, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Set-PnPPlannerUserPolicy", + "Rank": 1, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "CommandName": "Set-PnPPropertyBagValue", "Id": 1442, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1 + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 1, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "CommandName": "Set-PnPPropertyBagValue", "Id": 1443, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2 + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 2, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "CommandName": "Set-PnPPropertyBagValue", "Id": 1444, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3 + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 3, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "CommandName": "Set-PnPRequestAccessEmails", "Id": 1445, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1 + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 1, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "CommandName": "Set-PnPRequestAccessEmails", "Id": 1446, - "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2 + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 2, + "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "CommandName": "Set-PnPRequestAccessEmails", "Id": 1447, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3 + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 3, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "CommandName": "Set-PnPRoleDefinition", "Id": 1448, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1 + "CommandName": "Set-PnPRoleDefinition", + "Rank": 1, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "CommandName": "Set-PnPRoleDefinition", "Id": 1449, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2 + "CommandName": "Set-PnPRoleDefinition", + "Rank": 2, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "CommandName": "Set-PnPRoleDefinition", "Id": 1450, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3 + "CommandName": "Set-PnPRoleDefinition", + "Rank": 3, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "CommandName": "Set-PnPRoleDefinition", "Id": 1451, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4 + "CommandName": "Set-PnPRoleDefinition", + "Rank": 4, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "CommandName": "Set-PnPSearchConfiguration", "Id": 1452, - "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1 + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 1, + "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "CommandName": "Set-PnPSearchConfiguration", "Id": 1453, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2 + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 2, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "CommandName": "Set-PnPSearchConfiguration", "Id": 1454, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3 + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 3, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "CommandName": "Set-PnPSearchConfiguration", "Id": 1455, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 4, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "CommandName": "Set-PnPSearchExternalItem", "Id": 1456, - "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", - "Rank": 1 + "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" }, { - "CommandName": "Set-PnPSearchExternalItem", "Id": 1457, - "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\"", - "Rank": 2 + "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\"" }, { - "CommandName": "Set-PnPSearchSettings", "Id": 1458, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Rank": 1 + "CommandName": "Set-PnPSearchSettings", + "Rank": 1, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "CommandName": "Set-PnPSearchSettings", "Id": 1459, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2 + "CommandName": "Set-PnPSearchSettings", + "Rank": 2, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "CommandName": "Set-PnPSearchSettings", "Id": 1460, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3 + "CommandName": "Set-PnPSearchSettings", + "Rank": 3, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "CommandName": "Set-PnPSearchSettings", "Id": 1461, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4 + "CommandName": "Set-PnPSearchSettings", + "Rank": 4, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "CommandName": "Set-PnPSearchSettings", "Id": 1462, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5 + "CommandName": "Set-PnPSearchSettings", + "Rank": 5, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "CommandName": "Set-PnPSearchSettings", "Id": 1463, - "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6 + "CommandName": "Set-PnPSearchSettings", + "Rank": 6, + "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "CommandName": "Set-PnPSearchSettings", "Id": 1464, - "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7 + "CommandName": "Set-PnPSearchSettings", + "Rank": 7, + "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "CommandName": "Set-PnPSite", "Id": 1465, - "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1 + "CommandName": "Set-PnPSite", + "Rank": 1, + "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "CommandName": "Set-PnPSite", "Id": 1466, - "Command": "Set-PnPSite -Classification $null", - "Rank": 2 + "CommandName": "Set-PnPSite", + "Rank": 2, + "Command": "Set-PnPSite -Classification $null" }, { - "CommandName": "Set-PnPSite", "Id": 1467, - "Command": "Set-PnPSite -DisableFlows", - "Rank": 3 + "CommandName": "Set-PnPSite", + "Rank": 3, + "Command": "Set-PnPSite -DisableFlows" }, { - "CommandName": "Set-PnPSite", "Id": 1468, - "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4 + "CommandName": "Set-PnPSite", + "Rank": 4, + "Command": "Set-PnPSite -DisableFlows:$false" }, { - "CommandName": "Set-PnPSite", "Id": 1469, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5 + "CommandName": "Set-PnPSite", + "Rank": 5, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "CommandName": "Set-PnPSite", "Id": 1470, - "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6 + "CommandName": "Set-PnPSite", + "Rank": 6, + "Command": "Set-PnPSite -NoScriptSite $false" }, { - "CommandName": "Set-PnPSite", "Id": 1471, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Rank": 7 + "CommandName": "Set-PnPSite", + "Rank": 7, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "CommandName": "Set-PnPSite", "Id": 1472, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Rank": 8 + "CommandName": "Set-PnPSite", + "Rank": 8, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "CommandName": "Set-PnPSite", "Id": 1473, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Rank": 9 + "CommandName": "Set-PnPSite", + "Rank": 9, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "CommandName": "Set-PnPSite", "Id": 1474, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Rank": 10 + "CommandName": "Set-PnPSite", + "Rank": 10, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "CommandName": "Set-PnPSite", "Id": 1475, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Rank": 11 + "CommandName": "Set-PnPSite", + "Rank": 11, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "CommandName": "Set-PnPSite", "Id": 1476, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Rank": 12 + "CommandName": "Set-PnPSite", + "Rank": 12, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "CommandName": "Set-PnPSite", "Id": 1477, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Rank": 13 + "CommandName": "Set-PnPSite", + "Rank": 13, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "CommandName": "Set-PnPSite", "Id": 1478, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Rank": 14 + "CommandName": "Set-PnPSite", + "Rank": 14, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "CommandName": "Set-PnPSite", "Id": 1479, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Rank": 15 + "CommandName": "Set-PnPSite", + "Rank": 15, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "CommandName": "Set-PnPSite", "Id": 1480, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "Rank": 16 + "CommandName": "Set-PnPSite", + "Rank": 16, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "CommandName": "Set-PnPSite", "Id": 1481, - "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Rank": 17 + "CommandName": "Set-PnPSite", + "Rank": 17, + "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "CommandName": "Set-PnPSiteClassification", "Id": 1482, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1 + "CommandName": "Set-PnPSiteClassification", + "Rank": 1, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "CommandName": "Set-PnPSiteClosure", "Id": 1483, - "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1 + "CommandName": "Set-PnPSiteClosure", + "Rank": 1, + "Command": "Set-PnPSiteClosure -State Open" }, { - "CommandName": "Set-PnPSiteClosure", "Id": 1484, - "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2 + "CommandName": "Set-PnPSiteClosure", + "Rank": 2, + "Command": "Set-PnPSiteClosure -State Closed" }, { - "CommandName": "Set-PnPSiteDesign", "Id": 1485, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1 + "CommandName": "Set-PnPSiteDesign", + "Rank": 1, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "CommandName": "Set-PnPSiteDesign", "Id": 1486, - "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\"", - "Rank": 2 + "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\"" }, { - "CommandName": "Set-PnPSiteGroup", "Id": 1487, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Rank": 1 + "CommandName": "Set-PnPSiteGroup", + "Rank": 1, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "CommandName": "Set-PnPSiteGroup", "Id": 1488, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Rank": 2 + "CommandName": "Set-PnPSiteGroup", + "Rank": 2, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "CommandName": "Set-PnPSitePolicy", "Id": 1489, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1 + "CommandName": "Set-PnPSitePolicy", + "Rank": 1, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "CommandName": "Set-PnPSiteScript", "Id": 1490, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1 + "CommandName": "Set-PnPSiteScript", + "Rank": 1, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "CommandName": "Set-PnPSiteScriptPackage", "Id": 1491, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1 + "CommandName": "Set-PnPSiteScriptPackage", + "Rank": 1, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1492, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1 + "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 1, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1493, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2 + "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 2, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1494, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 1, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1495, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 2, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1496, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 3, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1497, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 4 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 4, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1498, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 5 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 5, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1499, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 6 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 6, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "CommandName": "Set-PnPStorageEntity", "Id": 1500, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 1 + "CommandName": "Set-PnPStorageEntity", + "Rank": 1, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "CommandName": "Set-PnPStorageEntity", "Id": 1501, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 2 + "CommandName": "Set-PnPStorageEntity", + "Rank": 2, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1502, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1 + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1503, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 2 + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1504, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1 + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1505, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 2 + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1506, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1 + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 1, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1507, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2 + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 2, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1508, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1 + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 1, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1509, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Rank": 2 + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 2, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1510, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Rank": 3 + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 3, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "CommandName": "Set-PnPTeamifyPromptHidden", "Id": 1511, - "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1 + "CommandName": "Set-PnPTeamifyPromptHidden", + "Rank": 1, + "Command": "Set-PnPTeamifyPromptHidden" }, { - "CommandName": "Set-PnPTeamsChannel", "Id": 1512, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1 + "CommandName": "Set-PnPTeamsChannel", + "Rank": 1, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "CommandName": "Set-PnPTeamsChannel", "Id": 1513, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2 + "CommandName": "Set-PnPTeamsChannel", + "Rank": 2, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "CommandName": "Set-PnpTeamsChannelUser", "Id": 1514, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Rank": 1 + "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 1, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "CommandName": "Set-PnpTeamsChannelUser", "Id": 1515, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Rank": 2 + "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 2, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "CommandName": "Set-PnPTeamsTab", "Id": 1516, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Rank": 1 + "CommandName": "Set-PnPTeamsTab", + "Rank": 1, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "CommandName": "Set-PnPTeamsTag", "Id": 1517, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Rank": 1 + "CommandName": "Set-PnPTeamsTag", + "Rank": 1, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "CommandName": "Set-PnPTeamsTeam", "Id": 1518, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1 + "CommandName": "Set-PnPTeamsTeam", + "Rank": 1, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "CommandName": "Set-PnPTeamsTeam", "Id": 1519, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2 + "CommandName": "Set-PnPTeamsTeam", + "Rank": 2, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "CommandName": "Set-PnPTeamsTeam", "Id": 1520, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Rank": 3 + "CommandName": "Set-PnPTeamsTeam", + "Rank": 3, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "CommandName": "Set-PnPTeamsTeam", "Id": 1521, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4 + "CommandName": "Set-PnPTeamsTeam", + "Rank": 4, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1522, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1 + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 1, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1523, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2 + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 2, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1524, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3 + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 3, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "CommandName": "Set-PnPTeamsTeamPicture", "Id": 1525, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1 + "CommandName": "Set-PnPTeamsTeamPicture", + "Rank": 1, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1526, - "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1 + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 1, + "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1527, - "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2 + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 2, + "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "CommandName": "Set-PnPTenant", "Id": 1528, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "Rank": 1 + "CommandName": "Set-PnPTenant", + "Rank": 1, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { - "CommandName": "Set-PnPTenant", "Id": 1529, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Rank": 2 + "CommandName": "Set-PnPTenant", + "Rank": 2, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "CommandName": "Set-PnPTenant", "Id": 1530, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3 + "CommandName": "Set-PnPTenant", + "Rank": 3, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "CommandName": "Set-PnPTenant", "Id": 1531, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4 + "CommandName": "Set-PnPTenant", + "Rank": 4, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "CommandName": "Set-PnPTenantAppCatalogUrl", "Id": 1532, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1 + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Rank": 1, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1533, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1 + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 1, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1534, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2 + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 2, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1535, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3 + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 3, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1536, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "Rank": 1 + "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\"" }, { - "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1537, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Rank": 2 + "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 2, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "CommandName": "Set-PnPTenantSite", "Id": 1538, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Rank": 1 + "CommandName": "Set-PnPTenantSite", + "Rank": 1, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "CommandName": "Set-PnPTenantSite", "Id": 1539, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Rank": 2 + "CommandName": "Set-PnPTenantSite", + "Rank": 2, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "CommandName": "Set-PnPTenantSite", "Id": 1540, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 3 + "CommandName": "Set-PnPTenantSite", + "Rank": 3, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "CommandName": "Set-PnPTenantSite", "Id": 1541, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 4 + "CommandName": "Set-PnPTenantSite", + "Rank": 4, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "CommandName": "Set-PnPTenantSite", "Id": 1542, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Rank": 5 + "CommandName": "Set-PnPTenantSite", + "Rank": 5, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1543, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1 + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 1, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1544, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2 + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 2, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "CommandName": "Set-PnPTerm", "Id": 1545, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1 + "CommandName": "Set-PnPTerm", + "Rank": 1, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "CommandName": "Set-PnPTerm", "Id": 1546, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2 + "CommandName": "Set-PnPTerm", + "Rank": 2, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "CommandName": "Set-PnPTerm", "Id": 1547, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 3 + "CommandName": "Set-PnPTerm", + "Rank": 3, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "CommandName": "Set-PnPTerm", "Id": 1548, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "Rank": 4 + "CommandName": "Set-PnPTerm", + "Rank": 4, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "CommandName": "Set-PnPTermGroup", "Id": 1549, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1 + "CommandName": "Set-PnPTermGroup", + "Rank": 1, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "CommandName": "Set-PnPTermSet", "Id": 1550, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1 + "CommandName": "Set-PnPTermSet", + "Rank": 1, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "CommandName": "Set-PnPTermSet", "Id": 1551, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2 + "CommandName": "Set-PnPTermSet", + "Rank": 2, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "CommandName": "Set-PnPTermSet", "Id": 1552, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3 + "CommandName": "Set-PnPTermSet", + "Rank": 3, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "CommandName": "Set-PnPTheme", "Id": 1553, - "Command": "Set-PnPTheme", - "Rank": 1 + "CommandName": "Set-PnPTheme", + "Rank": 1, + "Command": "Set-PnPTheme" }, { - "CommandName": "Set-PnPTheme", "Id": 1554, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2 + "CommandName": "Set-PnPTheme", + "Rank": 2, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "CommandName": "Set-PnPTheme", "Id": 1555, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Rank": 3 + "CommandName": "Set-PnPTheme", + "Rank": 3, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "CommandName": "Set-PnPTheme", "Id": 1556, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Rank": 4 + "CommandName": "Set-PnPTheme", + "Rank": 4, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "CommandName": "Set-PnPTraceLog", "Id": 1557, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1 + "CommandName": "Set-PnPTraceLog", + "Rank": 1, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "CommandName": "Set-PnPTraceLog", "Id": 1558, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2 + "CommandName": "Set-PnPTraceLog", + "Rank": 2, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "CommandName": "Set-PnPTraceLog", "Id": 1559, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3 + "CommandName": "Set-PnPTraceLog", + "Rank": 3, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "CommandName": "Set-PnPTraceLog", "Id": 1560, - "Command": "Set-PnPTraceLog -Off", - "Rank": 4 + "CommandName": "Set-PnPTraceLog", + "Rank": 4, + "Command": "Set-PnPTraceLog -Off" }, { - "CommandName": "Set-PnPUserOneDriveQuota", "Id": 1561, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1 + "CommandName": "Set-PnPUserOneDriveQuota", + "Rank": 1, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { - "CommandName": "Set-PnPUserProfileProperty", "Id": 1562, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Rank": 1 + "CommandName": "Set-PnPUserProfileProperty", + "Rank": 1, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "CommandName": "Set-PnPUserProfileProperty", "Id": 1563, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Rank": 2 + "CommandName": "Set-PnPUserProfileProperty", + "Rank": 2, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "CommandName": "Set-PnPView", "Id": 1564, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Rank": 1 + "CommandName": "Set-PnPView", + "Rank": 1, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "CommandName": "Set-PnPView", "Id": 1565, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Rank": 2 + "CommandName": "Set-PnPView", + "Rank": 2, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "CommandName": "Set-PnPView", "Id": 1566, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"", - "Rank": 3 + "CommandName": "Set-PnPView", + "Rank": 3, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"" }, { - "CommandName": "Set-PnPView", "Id": 1567, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Rank": 4 + "CommandName": "Set-PnPView", + "Rank": 4, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1568, - "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", - "Rank": 1 + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 1, + "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" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1569, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Rank": 2 + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 2, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1570, - "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", - "Rank": 3 + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 3, + "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" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1571, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Rank": 4 + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 4, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "CommandName": "Set-PnPWeb", "Id": 1572, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1 + "CommandName": "Set-PnPWeb", + "Rank": 1, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "CommandName": "Set-PnPWeb", "Id": 1573, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2 + "CommandName": "Set-PnPWeb", + "Rank": 2, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "CommandName": "Set-PnPWeb", "Id": 1574, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3 + "CommandName": "Set-PnPWeb", + "Rank": 3, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "CommandName": "Set-PnPWeb", "Id": 1575, - "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4 + "CommandName": "Set-PnPWeb", + "Rank": 4, + "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "CommandName": "Set-PnPWebHeader", "Id": 1576, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1 + "CommandName": "Set-PnPWebHeader", + "Rank": 1, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "CommandName": "Set-PnPWebHeader", "Id": 1577, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2 + "CommandName": "Set-PnPWebHeader", + "Rank": 2, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "CommandName": "Set-PnPWebHeader", "Id": 1578, - "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3 + "CommandName": "Set-PnPWebHeader", + "Rank": 3, + "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "CommandName": "Set-PnPWebhookSubscription", "Id": 1579, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1 + "CommandName": "Set-PnPWebhookSubscription", + "Rank": 1, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "CommandName": "Set-PnPWebhookSubscription", "Id": 1580, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Rank": 2 + "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\"" }, { - "CommandName": "Set-PnPWebPartProperty", "Id": 1581, - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "Rank": 1 + "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\"" }, { - "CommandName": "Set-PnPWebPermission", "Id": 1582, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 1 + "CommandName": "Set-PnPWebPermission", + "Rank": 1, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "CommandName": "Set-PnPWebPermission", "Id": 1583, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2 + "CommandName": "Set-PnPWebPermission", + "Rank": 2, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "CommandName": "Set-PnPWebPermission", "Id": 1584, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3 + "CommandName": "Set-PnPWebPermission", + "Rank": 3, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "CommandName": "Set-PnPWebPermission", "Id": 1585, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Rank": 4 + "CommandName": "Set-PnPWebPermission", + "Rank": 4, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "CommandName": "Set-PnPWebTheme", "Id": 1586, - "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1 + "CommandName": "Set-PnPWebTheme", + "Rank": 1, + "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "CommandName": "Set-PnPWebTheme", "Id": 1587, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2 + "CommandName": "Set-PnPWebTheme", + "Rank": 2, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "CommandName": "Set-PnPWikiPageContent", "Id": 1588, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Rank": 1 + "CommandName": "Set-PnPWikiPageContent", + "Rank": 1, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "CommandName": "Submit-PnPSearchQuery", "Id": 1589, - "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 1, + "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "CommandName": "Submit-PnPSearchQuery", "Id": 1590, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 2, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "CommandName": "Submit-PnPSearchQuery", "Id": 1591, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 3, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "CommandName": "Submit-PnPSearchQuery", "Id": 1592, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 4, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "CommandName": "Submit-PnPSearchQuery", "Id": 1593, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Rank": 5 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 5, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "CommandName": "Submit-PnPSearchQuery", "Id": 1594, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", - "Rank": 6 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 6, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" }, { - "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1595, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1 + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 1, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1596, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html", - "Rank": 2 + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 2, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html" }, { - "CommandName": "Sync-PnPAppToTeams", "Id": 1597, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Sync-PnPAppToTeams", + "Rank": 1, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1598, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 1, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1599, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 2, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1600, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Rank": 3 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 3, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "CommandName": "Test-PnPListItemIsRecord", "Id": 1601, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "CommandName": "Test-PnPListItemIsRecord", + "Rank": 1, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Id": 1602, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1 + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Rank": 1, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "CommandName": "Test-PnPSite", "Id": 1603, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "CommandName": "Test-PnPSite", + "Rank": 1, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "CommandName": "Test-PnPSite", "Id": 1604, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2 + "CommandName": "Test-PnPSite", + "Rank": 2, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "CommandName": "Test-PnPTenantTemplate", "Id": 1605, - "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1 + "CommandName": "Test-PnPTenantTemplate", + "Rank": 1, + "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "CommandName": "Undo-PnPFileCheckedOut", "Id": 1606, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1 + "CommandName": "Undo-PnPFileCheckedOut", + "Rank": 1, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "CommandName": "Uninstall-PnPApp", "Id": 1607, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Uninstall-PnPApp", + "Rank": 1, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Uninstall-PnPApp", "Id": 1608, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "CommandName": "Uninstall-PnPApp", + "Rank": 2, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "CommandName": "Unpublish-PnPApp", "Id": 1609, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Unpublish-PnPApp", + "Rank": 1, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Unpublish-PnPApp", "Id": 1610, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "CommandName": "Unpublish-PnPApp", + "Rank": 2, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "CommandName": "Unpublish-PnPContentType", "Id": 1611, - "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1 + "CommandName": "Unpublish-PnPContentType", + "Rank": 1, + "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "CommandName": "Unpublish-PnPSyntexModel", "Id": 1612, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1 + "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 1, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "CommandName": "Unpublish-PnPSyntexModel", "Id": 1613, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", - "Rank": 2 + "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" }, { - "CommandName": "Unregister-PnPHubSite", "Id": 1614, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1 + "CommandName": "Unregister-PnPHubSite", + "Rank": 1, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "CommandName": "Update-PnPApp", "Id": 1615, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Update-PnPApp", + "Rank": 1, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Update-PnPApp", "Id": 1616, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "CommandName": "Update-PnPApp", + "Rank": 2, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1617, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1 + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 1, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1618, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2 + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 2, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1619, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3 + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 3, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1620, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1 + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 1, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1621, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2 + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 2, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1622, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Rank": 3 + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 3, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "CommandName": "Update-PnPTeamsApp", "Id": 1623, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Rank": 1 + "CommandName": "Update-PnPTeamsApp", + "Rank": 1, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" }, { - "CommandName": "Update-PnPTeamsUser", "Id": 1624, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1 + "CommandName": "Update-PnPTeamsUser", + "Rank": 1, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "CommandName": "Update-PnPTeamsUser", "Id": 1625, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2 + "CommandName": "Update-PnPTeamsUser", + "Rank": 2, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "CommandName": "Update-PnPTeamsUser", "Id": 1626, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Rank": 3 + "CommandName": "Update-PnPTeamsUser", + "Rank": 3, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { - "CommandName": "Update-PnPUserType", "Id": 1627, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Rank": 1 + "CommandName": "Update-PnPUserType", + "Rank": 1, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } ] diff --git a/version.txt b/version.txt index 1bc6c3c33..cf2944ec5 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.36 \ No newline at end of file +2.3.37 \ No newline at end of file From 27452939074444d25b7fd4e22c2940bd5795ff33 Mon Sep 17 00:00:00 2001 From: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Date: Sat, 27 Jan 2024 02:36:02 +0000 Subject: [PATCH 52/53] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6508 ++++++++--------- version.txt | 2 +- 3 files changed, 3256 insertions(+), 3256 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index ae6a8b71d..af0c8c5f7 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -7c463c88c5dfba208b6d09b553b32f1a90f8051f \ No newline at end of file +8f8fb8423f3037ca634aa9b42a321ff4499444e6 \ 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 0bda0aa78..a006b1276 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9764 +1,9764 @@ [ { - "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 '<Query><Where><Geq><FieldRef Name=\"Modified\"/><Value Type=\"DateTime\"><Today OffsetDays=\"-7\" /></Value></Geq></Where></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=\"12/28/2023\"}" }, { - "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=\"12/28/2023\"}" }, { - "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=\"12/28/2023\"}" }, { - "Id": 50, - "CommandName": "Add-PnPFile", "Rank": 6, + "CommandName": "Add-PnPFile", + "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; 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 '<script>Alert(\"This is my Script block\");</script>' -Sequence 9999 -Scope Site" }, { - "Id": 93, - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '<script>Alert(\"This is my Script block\");</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 \"<FieldRef Name='Title' Type='COUNT'/>\"" }, { - "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-PnPFile", "Rank": 1, + "CommandName": "Convert-PnPFile", + "Id": 233, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream" }, { - "Id": 234, - "CommandName": "Convert-PnPFile", "Rank": 2, + "CommandName": "Convert-PnPFile", + "Id": 234, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"" }, { - "Id": 235, - "CommandName": "Convert-PnPFile", "Rank": 3, + "CommandName": "Convert-PnPFile", + "Id": 235, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"" }, { - "Id": 236, - "CommandName": "Convert-PnPFile", "Rank": 4, + "CommandName": "Convert-PnPFile", + "Id": 236, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force" }, { - "Id": 237, - "CommandName": "Convert-PnPFile", "Rank": 5, + "CommandName": "Convert-PnPFile", + "Id": 237, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"" }, { - "Id": 238, - "CommandName": "Convert-PnPFile", "Rank": 6, + "CommandName": "Convert-PnPFile", + "Id": 238, "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"" }, { - "Id": 239, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 239, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "Id": 240, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 240, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "Id": 241, - "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplate", + "Id": 241, "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "Id": 242, - "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplate", + "Id": 242, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "Id": 243, - "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, + "CommandName": "Convert-PnPSiteTemplate", + "Id": 243, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "Id": 244, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 244, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "Id": 245, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 245, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "Id": 246, - "CommandName": "ConvertTo-PnPPage", "Rank": 1, + "CommandName": "ConvertTo-PnPPage", + "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "Id": 247, - "CommandName": "ConvertTo-PnPPage", "Rank": 2, + "CommandName": "ConvertTo-PnPPage", + "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "Id": 248, - "CommandName": "ConvertTo-PnPPage", "Rank": 3, + "CommandName": "ConvertTo-PnPPage", + "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "Id": 249, - "CommandName": "ConvertTo-PnPPage", "Rank": 4, + "CommandName": "ConvertTo-PnPPage", + "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "Id": 250, - "CommandName": "ConvertTo-PnPPage", "Rank": 5, + "CommandName": "ConvertTo-PnPPage", + "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 251, - "CommandName": "ConvertTo-PnPPage", "Rank": 6, + "CommandName": "ConvertTo-PnPPage", + "Id": 251, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "Id": 252, - "CommandName": "ConvertTo-PnPPage", "Rank": 7, + "CommandName": "ConvertTo-PnPPage", + "Id": 252, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "Id": 253, - "CommandName": "ConvertTo-PnPPage", "Rank": 8, + "CommandName": "ConvertTo-PnPPage", + "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"<root>\" -Overwrite" }, { - "Id": 254, - "CommandName": "ConvertTo-PnPPage", "Rank": 9, + "CommandName": "ConvertTo-PnPPage", + "Id": 254, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 255, - "CommandName": "ConvertTo-PnPPage", "Rank": 10, + "CommandName": "ConvertTo-PnPPage", + "Id": 255, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "Id": 256, - "CommandName": "ConvertTo-PnPPage", "Rank": 11, + "CommandName": "ConvertTo-PnPPage", + "Id": 256, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "Id": 257, - "CommandName": "ConvertTo-PnPPage", "Rank": 12, + "CommandName": "ConvertTo-PnPPage", + "Id": 257, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 258, - "CommandName": "ConvertTo-PnPPage", "Rank": 13, + "CommandName": "ConvertTo-PnPPage", + "Id": 258, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 259, - "CommandName": "ConvertTo-PnPPage", "Rank": 14, + "CommandName": "ConvertTo-PnPPage", + "Id": 259, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "Id": 260, - "CommandName": "Copy-PnPFile", "Rank": 1, + "CommandName": "Copy-PnPFile", + "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 261, - "CommandName": "Copy-PnPFile", "Rank": 2, + "CommandName": "Copy-PnPFile", + "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Id": 262, - "CommandName": "Copy-PnPFile", "Rank": 3, + "CommandName": "Copy-PnPFile", + "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Id": 263, - "CommandName": "Copy-PnPFile", "Rank": 4, + "CommandName": "Copy-PnPFile", + "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 264, - "CommandName": "Copy-PnPFile", "Rank": 5, + "CommandName": "Copy-PnPFile", + "Id": 264, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Id": 265, - "CommandName": "Copy-PnPFile", "Rank": 6, + "CommandName": "Copy-PnPFile", + "Id": 265, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Id": 266, - "CommandName": "Copy-PnPFile", "Rank": 7, + "CommandName": "Copy-PnPFile", + "Id": 266, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Id": 267, - "CommandName": "Copy-PnPFile", "Rank": 8, + "CommandName": "Copy-PnPFile", + "Id": 267, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 268, - "CommandName": "Copy-PnPFile", "Rank": 9, + "CommandName": "Copy-PnPFile", + "Id": 268, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Id": 269, - "CommandName": "Copy-PnPFile", "Rank": 10, + "CommandName": "Copy-PnPFile", + "Id": 269, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Id": 270, - "CommandName": "Copy-PnPFolder", "Rank": 1, + "CommandName": "Copy-PnPFolder", + "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 271, - "CommandName": "Copy-PnPFolder", "Rank": 2, + "CommandName": "Copy-PnPFolder", + "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Id": 272, - "CommandName": "Copy-PnPFolder", "Rank": 3, + "CommandName": "Copy-PnPFolder", + "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Id": 273, - "CommandName": "Copy-PnPFolder", "Rank": 4, + "CommandName": "Copy-PnPFolder", + "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 274, - "CommandName": "Copy-PnPFolder", "Rank": 5, + "CommandName": "Copy-PnPFolder", + "Id": 274, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Id": 275, - "CommandName": "Copy-PnPFolder", "Rank": 6, + "CommandName": "Copy-PnPFolder", + "Id": 275, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Id": 276, - "CommandName": "Copy-PnPFolder", "Rank": 7, + "CommandName": "Copy-PnPFolder", + "Id": 276, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Id": 277, - "CommandName": "Copy-PnPFolder", "Rank": 8, + "CommandName": "Copy-PnPFolder", + "Id": 277, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 278, - "CommandName": "Copy-PnPFolder", "Rank": 9, + "CommandName": "Copy-PnPFolder", + "Id": 278, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Id": 279, - "CommandName": "Copy-PnPFolder", "Rank": 10, + "CommandName": "Copy-PnPFolder", + "Id": 279, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Id": 280, - "CommandName": "Copy-PnPItemProxy", "Rank": 1, + "CommandName": "Copy-PnPItemProxy", + "Id": 280, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "Id": 281, - "CommandName": "Copy-PnPList", "Rank": 1, + "CommandName": "Copy-PnPList", + "Id": 281, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "Id": 282, - "CommandName": "Copy-PnPList", "Rank": 2, + "CommandName": "Copy-PnPList", + "Id": 282, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "Id": 283, - "CommandName": "Copy-PnPList", "Rank": 3, + "CommandName": "Copy-PnPList", + "Id": 283, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "Id": 284, - "CommandName": "Copy-PnPList", "Rank": 4, + "CommandName": "Copy-PnPList", + "Id": 284, "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { - "Id": 285, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 285, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "Id": 286, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 286, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "Id": 287, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 3, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 287, "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": 288, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 4, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 288, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Id": 289, - "CommandName": "Disable-PnPFeature", "Rank": 1, + "CommandName": "Disable-PnPFeature", + "Id": 289, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 290, - "CommandName": "Disable-PnPFeature", "Rank": 2, + "CommandName": "Disable-PnPFeature", + "Id": 290, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Id": 291, - "CommandName": "Disable-PnPFeature", "Rank": 3, + "CommandName": "Disable-PnPFeature", + "Id": 291, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Id": 292, - "CommandName": "Disable-PnPPageScheduling", "Rank": 1, + "CommandName": "Disable-PnPPageScheduling", + "Id": 292, "Command": "Disable-PnPPageScheduling" }, { - "Id": 293, - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 293, "Command": "Disable-PnPPowerShellTelemetry" }, { - "Id": 294, - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 294, "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "Id": 295, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 295, "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Id": 296, - "CommandName": "Disable-PnPSiteClassification", "Rank": 1, + "CommandName": "Disable-PnPSiteClassification", + "Id": 296, "Command": "Disable-PnPSiteClassification" }, { - "Id": 297, - "CommandName": "Disconnect-PnPOnline", "Rank": 1, + "CommandName": "Disconnect-PnPOnline", + "Id": 297, "Command": "Disconnect-PnPOnline" }, { - "Id": 298, - "CommandName": "Enable-PnPCommSite", "Rank": 1, + "CommandName": "Enable-PnPCommSite", + "Id": 298, "Command": "Enable-PnPCommSite" }, { - "Id": 299, - "CommandName": "Enable-PnPCommSite", "Rank": 2, + "CommandName": "Enable-PnPCommSite", + "Id": 299, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "Id": 300, - "CommandName": "Enable-PnPFeature", "Rank": 1, + "CommandName": "Enable-PnPFeature", + "Id": 300, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 301, - "CommandName": "Enable-PnPFeature", "Rank": 2, + "CommandName": "Enable-PnPFeature", + "Id": 301, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Id": 302, - "CommandName": "Enable-PnPFeature", "Rank": 3, + "CommandName": "Enable-PnPFeature", + "Id": 302, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Id": 303, - "CommandName": "Enable-PnPPageScheduling", "Rank": 1, + "CommandName": "Enable-PnPPageScheduling", + "Id": 303, "Command": "Enable-PnPPageScheduling" }, { - "Id": 304, - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 304, "Command": "Enable-PnPPowerShellTelemetry" }, { - "Id": 305, - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 305, "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "Id": 306, - "CommandName": "Enable-PnPSiteClassification", "Rank": 1, + "CommandName": "Enable-PnPSiteClassification", + "Id": 306, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "Id": 307, - "CommandName": "Enable-PnPSiteClassification", "Rank": 2, + "CommandName": "Enable-PnPSiteClassification", + "Id": 307, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Id": 308, - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 308, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "Id": 309, - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 309, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "Id": 310, - "CommandName": "Export-PnPPage", "Rank": 1, + "CommandName": "Export-PnPPage", + "Id": 310, "Command": "Export-PnPPage -Identity Home.aspx" }, { - "Id": 311, - "CommandName": "Export-PnPPageMapping", "Rank": 1, + "CommandName": "Export-PnPPageMapping", + "Id": 311, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "Id": 312, - "CommandName": "Export-PnPPageMapping", "Rank": 2, + "CommandName": "Export-PnPPageMapping", + "Id": 312, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "Id": 313, - "CommandName": "Export-PnPPageMapping", "Rank": 3, + "CommandName": "Export-PnPPageMapping", + "Id": 313, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "Id": 314, - "CommandName": "Export-PnPTaxonomy", "Rank": 1, + "CommandName": "Export-PnPTaxonomy", + "Id": 314, "Command": "Export-PnPTaxonomy" }, { - "Id": 315, - "CommandName": "Export-PnPTaxonomy", "Rank": 2, + "CommandName": "Export-PnPTaxonomy", + "Id": 315, "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "Id": 316, - "CommandName": "Export-PnPTaxonomy", "Rank": 3, + "CommandName": "Export-PnPTaxonomy", + "Id": 316, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "Id": 317, - "CommandName": "Export-PnPTaxonomy", "Rank": 4, + "CommandName": "Export-PnPTaxonomy", + "Id": 317, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "Id": 318, - "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, + "CommandName": "Export-PnPTermGroupToXml", + "Id": 318, "Command": "Export-PnPTermGroupToXml" }, { - "Id": 319, - "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, + "CommandName": "Export-PnPTermGroupToXml", + "Id": 319, "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "Id": 320, - "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, + "CommandName": "Export-PnPTermGroupToXml", + "Id": 320, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "Id": 321, - "CommandName": "Export-PnPUserInfo", "Rank": 1, + "CommandName": "Export-PnPUserInfo", + "Id": 321, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Id": 322, - "CommandName": "Export-PnPUserInfo", "Rank": 2, + "CommandName": "Export-PnPUserInfo", + "Id": 322, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Id": 323, - "CommandName": "Export-PnPUserProfile", "Rank": 1, + "CommandName": "Export-PnPUserProfile", + "Id": 323, "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "Id": 324, - "CommandName": "Export-PnPUserProfile", "Rank": 2, + "CommandName": "Export-PnPUserProfile", + "Id": 324, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Id": 325, - "CommandName": "Find-PnPFile", "Rank": 1, + "CommandName": "Find-PnPFile", + "Id": 325, "Command": "Find-PnPFile -Match *.master" }, { - "Id": 326, - "CommandName": "Find-PnPFile", "Rank": 2, + "CommandName": "Find-PnPFile", + "Id": 326, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "Id": 327, - "CommandName": "Find-PnPFile", "Rank": 3, + "CommandName": "Find-PnPFile", + "Id": 327, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "Id": 328, - "CommandName": "Get-PnPAccessToken", "Rank": 1, + "CommandName": "Get-PnPAccessToken", + "Id": 328, "Command": "Get-PnPAccessToken" }, { - "Id": 329, - "CommandName": "Get-PnPAccessToken", "Rank": 2, + "CommandName": "Get-PnPAccessToken", + "Id": 329, "Command": "Get-PnPAccessToken -Decoded" }, { - "Id": 330, - "CommandName": "Get-PnPAccessToken", "Rank": 3, + "CommandName": "Get-PnPAccessToken", + "Id": 330, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "Id": 331, - "CommandName": "Get-PnPAccessToken", "Rank": 4, + "CommandName": "Get-PnPAccessToken", + "Id": 331, "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "Id": 332, - "CommandName": "Get-PnPAccessToken", "Rank": 5, + "CommandName": "Get-PnPAccessToken", + "Id": 332, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "Id": 333, - "CommandName": "Get-PnPAlert", "Rank": 1, + "CommandName": "Get-PnPAlert", + "Id": 333, "Command": "Get-PnPAlert" }, { - "Id": 334, - "CommandName": "Get-PnPAlert", "Rank": 2, + "CommandName": "Get-PnPAlert", + "Id": 334, "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "Id": 335, - "CommandName": "Get-PnPAlert", "Rank": 3, + "CommandName": "Get-PnPAlert", + "Id": 335, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 336, - "CommandName": "Get-PnPAlert", "Rank": 4, + "CommandName": "Get-PnPAlert", + "Id": 336, "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "Id": 337, - "CommandName": "Get-PnPAlert", "Rank": 5, + "CommandName": "Get-PnPAlert", + "Id": 337, "Command": "Get-PnPAlert -AllUsers" }, { - "Id": 338, - "CommandName": "Get-PnPAlert", "Rank": 6, + "CommandName": "Get-PnPAlert", + "Id": 338, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "Id": 339, - "CommandName": "Get-PnPApp", "Rank": 1, + "CommandName": "Get-PnPApp", + "Id": 339, "Command": "Get-PnPApp" }, { - "Id": 340, - "CommandName": "Get-PnPApp", "Rank": 2, + "CommandName": "Get-PnPApp", + "Id": 340, "Command": "Get-PnPApp -Scope Site" }, { - "Id": 341, - "CommandName": "Get-PnPApp", "Rank": 3, + "CommandName": "Get-PnPApp", + "Id": 341, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 342, - "CommandName": "Get-PnPAppErrors", "Rank": 1, + "CommandName": "Get-PnPAppErrors", + "Id": 342, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "Id": 343, - "CommandName": "Get-PnPAppErrors", "Rank": 2, + "CommandName": "Get-PnPAppErrors", + "Id": 343, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "Id": 344, - "CommandName": "Get-PnPAppInfo", "Rank": 1, + "CommandName": "Get-PnPAppInfo", + "Id": 344, "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "Id": 345, - "CommandName": "Get-PnPAppInfo", "Rank": 2, + "CommandName": "Get-PnPAppInfo", + "Id": 345, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 346, - "CommandName": "Get-PnPAppInfo", "Rank": 3, + "CommandName": "Get-PnPAppInfo", + "Id": 346, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "Id": 347, - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 347, "Command": "Get-PnPApplicationCustomizer" }, { - "Id": 348, - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 348, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 349, - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 349, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "Id": 350, - "CommandName": "Get-PnPAuditing", "Rank": 1, + "CommandName": "Get-PnPAuditing", + "Id": 350, "Command": "Get-PnPAuditing" }, { - "Id": 351, - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 351, "Command": "Get-PnPAuthenticationRealm" }, { - "Id": 352, - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 352, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "Id": 353, - "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, + "CommandName": "Get-PnPAvailableLanguage", + "Id": 353, "Command": "Get-PnPAvailableLanguage" }, { - "Id": 354, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 354, "Command": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 355, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 355, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "Id": 356, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 356, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "Id": 357, - "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Get-PnPAvailableSiteClassification", + "Id": 357, "Command": "Get-PnPAvailableSiteClassification" }, { - "Id": 358, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 358, "Command": "Get-PnPAzureACSPrincipal" }, { - "Id": 359, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 359, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "Id": 360, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 360, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "Id": 361, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 361, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "Id": 362, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 362, "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 363, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 363, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "Id": 364, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 364, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "Id": 365, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 365, "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 366, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 366, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "Id": 367, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 367, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "Id": 368, - "CommandName": "Get-PnPAzureADApp", "Rank": 1, + "CommandName": "Get-PnPAzureADApp", + "Id": 368, "Command": "Get-PnPAzureADApp" }, { - "Id": 369, - "CommandName": "Get-PnPAzureADApp", "Rank": 2, + "CommandName": "Get-PnPAzureADApp", + "Id": 369, "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "Id": 370, - "CommandName": "Get-PnPAzureADApp", "Rank": 3, + "CommandName": "Get-PnPAzureADApp", + "Id": 370, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 371, - "CommandName": "Get-PnPAzureADApp", "Rank": 4, + "CommandName": "Get-PnPAzureADApp", + "Id": 371, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 372, - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 372, "Command": "Get-PnPAzureADAppPermission" }, { - "Id": 373, - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 373, "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "Id": 374, - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 374, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 375, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 375, "Command": "Get-PnPAzureADAppSitePermission" }, { - "Id": 376, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 376, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "Id": 377, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 377, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "Id": 378, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 378, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "Id": 379, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 379, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "Id": 380, - "CommandName": "Get-PnPAzureADGroup", "Rank": 1, + "CommandName": "Get-PnPAzureADGroup", + "Id": 380, "Command": "Get-PnPAzureADGroup" }, { - "Id": 381, - "CommandName": "Get-PnPAzureADGroup", "Rank": 2, + "CommandName": "Get-PnPAzureADGroup", + "Id": 381, "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "Id": 382, - "CommandName": "Get-PnPAzureADGroup", "Rank": 3, + "CommandName": "Get-PnPAzureADGroup", + "Id": 382, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "Id": 383, - "CommandName": "Get-PnPAzureADGroup", "Rank": 4, + "CommandName": "Get-PnPAzureADGroup", + "Id": 383, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "Id": 384, - "CommandName": "Get-PnPAzureADGroup", "Rank": 5, + "CommandName": "Get-PnPAzureADGroup", + "Id": 384, "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "Id": 385, - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 385, "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "Id": 386, - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 386, "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "Id": 387, - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 387, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "Id": 388, - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 388, "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "Id": 389, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 389, "Command": "Get-PnPAzureADServicePrincipal" }, { - "Id": 390, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 390, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "Id": 391, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 391, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "Id": 392, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 392, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "Id": 393, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 393, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 394, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 394, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 395, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 395, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Id": 396, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 396, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 397, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 397, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "Id": 398, - "CommandName": "Get-PnPAzureADUser", "Rank": 1, + "CommandName": "Get-PnPAzureADUser", + "Id": 398, "Command": "Get-PnPAzureADUser" }, { - "Id": 399, - "CommandName": "Get-PnPAzureADUser", "Rank": 2, + "CommandName": "Get-PnPAzureADUser", + "Id": 399, "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "Id": 400, - "CommandName": "Get-PnPAzureADUser", "Rank": 3, + "CommandName": "Get-PnPAzureADUser", + "Id": 400, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Id": 401, - "CommandName": "Get-PnPAzureADUser", "Rank": 4, + "CommandName": "Get-PnPAzureADUser", + "Id": 401, "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "Id": 402, - "CommandName": "Get-PnPAzureADUser", "Rank": 5, + "CommandName": "Get-PnPAzureADUser", + "Id": 402, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "Id": 403, - "CommandName": "Get-PnPAzureADUser", "Rank": 6, + "CommandName": "Get-PnPAzureADUser", + "Id": 403, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "Id": 404, - "CommandName": "Get-PnPAzureADUser", "Rank": 7, + "CommandName": "Get-PnPAzureADUser", + "Id": 404, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "Id": 405, - "CommandName": "Get-PnPAzureADUser", "Rank": 8, + "CommandName": "Get-PnPAzureADUser", + "Id": 405, "Command": "Get-PnPAzureADUser -Delta" }, { - "Id": 406, - "CommandName": "Get-PnPAzureADUser", "Rank": 9, + "CommandName": "Get-PnPAzureADUser", + "Id": 406, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "Id": 407, - "CommandName": "Get-PnPAzureADUser", "Rank": 10, + "CommandName": "Get-PnPAzureADUser", + "Id": 407, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "Id": 408, - "CommandName": "Get-PnPAzureCertificate", "Rank": 1, + "CommandName": "Get-PnPAzureCertificate", + "Id": 408, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "Id": 409, - "CommandName": "Get-PnPAzureCertificate", "Rank": 2, + "CommandName": "Get-PnPAzureCertificate", + "Id": 409, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Id": 410, - "CommandName": "Get-PnPAzureCertificate", "Rank": 3, + "CommandName": "Get-PnPAzureCertificate", + "Id": 410, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "Id": 411, - "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Get-PnPBrowserIdleSignout", + "Id": 411, "Command": "Get-PnPBrowserIdleSignout" }, { - "Id": 412, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 412, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "Id": 413, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 413, "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Id": 414, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 414, "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 415, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 415, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "Id": 416, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 416, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "Id": 417, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 417, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 418, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 418, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "Id": 419, - "CommandName": "Get-PnPChangeLog", "Rank": 1, + "CommandName": "Get-PnPChangeLog", + "Id": 419, "Command": "Get-PnPChangeLog" }, { - "Id": 420, - "CommandName": "Get-PnPChangeLog", "Rank": 2, + "CommandName": "Get-PnPChangeLog", + "Id": 420, "Command": "Get-PnPChangeLog -Nightly" }, { - "Id": 421, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 421, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "Id": 422, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 422, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "Id": 423, - "CommandName": "Get-PnPContainer", "Rank": 1, + "CommandName": "Get-PnPContainer", + "Id": 423, "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996" }, { - "Id": 424, - "CommandName": "Get-PnPContainer", "Rank": 2, + "CommandName": "Get-PnPContainer", + "Id": 424, "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { - "Id": 425, - "CommandName": "Get-PnPContainer", "Rank": 3, + "CommandName": "Get-PnPContainer", + "Id": 425, "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" }, { - "Id": 426, - "CommandName": "Get-PnPContainerTypeConfiguration", "Rank": 1, + "CommandName": "Get-PnPContainerTypeConfiguration", + "Id": 426, "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996" }, { - "Id": 427, - "CommandName": "Get-PnPContentType", "Rank": 1, + "CommandName": "Get-PnPContentType", + "Id": 427, "Command": "Get-PnPContentType" }, { - "Id": 428, - "CommandName": "Get-PnPContentType", "Rank": 2, + "CommandName": "Get-PnPContentType", + "Id": 428, "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "Id": 429, - "CommandName": "Get-PnPContentType", "Rank": 3, + "CommandName": "Get-PnPContentType", + "Id": 429, "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "Id": 430, - "CommandName": "Get-PnPContentType", "Rank": 4, + "CommandName": "Get-PnPContentType", + "Id": 430, "Command": "Get-PnPContentType -List \"Documents\"" }, { - "Id": 431, - "CommandName": "Get-PnPContentType", "Rank": 5, + "CommandName": "Get-PnPContentType", + "Id": 431, "Command": "Get-PnPContentType -Includes \"SchemaXml\"" }, { - "Id": 432, - "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, + "CommandName": "Get-PnPContentTypePublishingStatus", + "Id": 432, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "Id": 433, - "CommandName": "Get-PnPCustomAction", "Rank": 1, + "CommandName": "Get-PnPCustomAction", + "Id": 433, "Command": "Get-PnPCustomAction" }, { - "Id": 434, - "CommandName": "Get-PnPCustomAction", "Rank": 2, + "CommandName": "Get-PnPCustomAction", + "Id": 434, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 435, - "CommandName": "Get-PnPCustomAction", "Rank": 3, + "CommandName": "Get-PnPCustomAction", + "Id": 435, "Command": "Get-PnPCustomAction -Scope web" }, { - "Id": 436, - "CommandName": "Get-PnPDeletedContainer", "Rank": 1, + "CommandName": "Get-PnPDeletedContainer", + "Id": 436, "Command": "Get-PnPDeletedContainer" }, { - "Id": 437, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 437, "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "Id": 438, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 438, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 439, - "CommandName": "Get-PnPDeletedTeam", "Rank": 1, + "CommandName": "Get-PnPDeletedTeam", + "Id": 439, "Command": "Get-PnPDeletedTeam" }, { - "Id": 440, - "CommandName": "Get-PnPDiagnostics", "Rank": 1, + "CommandName": "Get-PnPDiagnostics", + "Id": 440, "Command": "Get-PnPDiagnostics" }, { - "Id": 441, - "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Get-PnPDisableSpacesActivation", + "Id": 441, "Command": "Get-PnPDisableSpacesActivation" }, { - "Id": 442, - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 442, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "Id": 443, - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 443, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "Id": 444, - "CommandName": "Get-PnPEventReceiver", "Rank": 1, + "CommandName": "Get-PnPEventReceiver", + "Id": 444, "Command": "Get-PnPEventReceiver" }, { - "Id": 445, - "CommandName": "Get-PnPEventReceiver", "Rank": 2, + "CommandName": "Get-PnPEventReceiver", + "Id": 445, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 446, - "CommandName": "Get-PnPEventReceiver", "Rank": 3, + "CommandName": "Get-PnPEventReceiver", + "Id": 446, "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "Id": 447, - "CommandName": "Get-PnPEventReceiver", "Rank": 4, + "CommandName": "Get-PnPEventReceiver", + "Id": 447, "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "Id": 448, - "CommandName": "Get-PnPEventReceiver", "Rank": 5, + "CommandName": "Get-PnPEventReceiver", + "Id": 448, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 449, - "CommandName": "Get-PnPEventReceiver", "Rank": 6, + "CommandName": "Get-PnPEventReceiver", + "Id": 449, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "Id": 450, - "CommandName": "Get-PnPEventReceiver", "Rank": 7, + "CommandName": "Get-PnPEventReceiver", + "Id": 450, "Command": "Get-PnPEventReceiver -Scope Site" }, { - "Id": 451, - "CommandName": "Get-PnPEventReceiver", "Rank": 8, + "CommandName": "Get-PnPEventReceiver", + "Id": 451, "Command": "Get-PnPEventReceiver -Scope Web" }, { - "Id": 452, - "CommandName": "Get-PnPEventReceiver", "Rank": 9, + "CommandName": "Get-PnPEventReceiver", + "Id": 452, "Command": "Get-PnPEventReceiver -Scope All" }, { - "Id": 453, - "CommandName": "Get-PnPException", "Rank": 1, + "CommandName": "Get-PnPException", + "Id": 453, "Command": "Get-PnPException" }, { - "Id": 454, - "CommandName": "Get-PnPException", "Rank": 2, + "CommandName": "Get-PnPException", + "Id": 454, "Command": "Get-PnPException -All" }, { - "Id": 455, - "CommandName": "Get-PnPExternalUser", "Rank": 1, + "CommandName": "Get-PnPExternalUser", + "Id": 455, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "Id": 456, - "CommandName": "Get-PnPExternalUser", "Rank": 2, + "CommandName": "Get-PnPExternalUser", + "Id": 456, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "Id": 457, - "CommandName": "Get-PnPFeature", "Rank": 1, + "CommandName": "Get-PnPFeature", + "Id": 457, "Command": "Get-PnPFeature" }, { - "Id": 458, - "CommandName": "Get-PnPFeature", "Rank": 2, + "CommandName": "Get-PnPFeature", + "Id": 458, "Command": "Get-PnPFeature -Scope Site" }, { - "Id": 459, - "CommandName": "Get-PnPFeature", "Rank": 3, + "CommandName": "Get-PnPFeature", + "Id": 459, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 460, - "CommandName": "Get-PnPFeature", "Rank": 4, + "CommandName": "Get-PnPFeature", + "Id": 460, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "Id": 461, - "CommandName": "Get-PnPField", "Rank": 1, + "CommandName": "Get-PnPField", + "Id": 461, "Command": "Get-PnPField" }, { - "Id": 462, - "CommandName": "Get-PnPField", "Rank": 2, + "CommandName": "Get-PnPField", + "Id": 462, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Id": 463, - "CommandName": "Get-PnPField", "Rank": 3, + "CommandName": "Get-PnPField", + "Id": 463, "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "Id": 464, - "CommandName": "Get-PnPFile", "Rank": 1, + "CommandName": "Get-PnPFile", + "Id": 464, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "Id": 465, - "CommandName": "Get-PnPFile", "Rank": 2, + "CommandName": "Get-PnPFile", + "Id": 465, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "Id": 466, - "CommandName": "Get-PnPFile", "Rank": 3, + "CommandName": "Get-PnPFile", + "Id": 466, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "Id": 467, - "CommandName": "Get-PnPFile", "Rank": 4, + "CommandName": "Get-PnPFile", + "Id": 467, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "Id": 468, - "CommandName": "Get-PnPFile", "Rank": 5, + "CommandName": "Get-PnPFile", + "Id": 468, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "Id": 469, - "CommandName": "Get-PnPFile", "Rank": 6, + "CommandName": "Get-PnPFile", + "Id": 469, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "Id": 470, - "CommandName": "Get-PnPFile", "Rank": 7, + "CommandName": "Get-PnPFile", + "Id": 470, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "Id": 471, - "CommandName": "Get-PnPFileAnalyticsData", "Rank": 1, + "CommandName": "Get-PnPFileAnalyticsData", + "Id": 471, "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "Id": 472, - "CommandName": "Get-PnPFileAnalyticsData", "Rank": 2, + "CommandName": "Get-PnPFileAnalyticsData", + "Id": 472, "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays" }, { - "Id": 473, - "CommandName": "Get-PnPFileAnalyticsData", "Rank": 3, + "CommandName": "Get-PnPFileAnalyticsData", + "Id": 473, "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { - "Id": 474, - "CommandName": "Get-PnPFileInFolder", "Rank": 1, + "CommandName": "Get-PnPFileInFolder", + "Id": 474, "Command": "Get-PnPFileInFolder" }, { - "Id": 475, - "CommandName": "Get-PnPFileInFolder", "Rank": 2, + "CommandName": "Get-PnPFileInFolder", + "Id": 475, "Command": "Get-PnPFileInFolder -Recurse" }, { - "Id": 476, - "CommandName": "Get-PnPFileInFolder", "Rank": 3, + "CommandName": "Get-PnPFileInFolder", + "Id": 476, "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"" }, { - "Id": 477, - "CommandName": "Get-PnPFileInFolder", "Rank": 4, + "CommandName": "Get-PnPFileInFolder", + "Id": 477, "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Id": 478, - "CommandName": "Get-PnPFileInFolder", "Rank": 5, + "CommandName": "Get-PnPFileInFolder", + "Id": 478, "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { - "Id": 479, - "CommandName": "Get-PnPFileSharingLink", "Rank": 1, + "CommandName": "Get-PnPFileSharingLink", + "Id": 479, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 480, - "CommandName": "Get-PnPFileVersion", "Rank": 1, + "CommandName": "Get-PnPFileVersion", + "Id": 480, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "Id": 481, - "CommandName": "Get-PnPFileVersion", "Rank": 2, + "CommandName": "Get-PnPFileVersion", + "Id": 481, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "Id": 482, - "CommandName": "Get-PnPFlow", "Rank": 1, + "CommandName": "Get-PnPFlow", + "Id": 482, "Command": "Get-PnPFlow -AsAdmin" }, { - "Id": 483, - "CommandName": "Get-PnPFlow", "Rank": 2, + "CommandName": "Get-PnPFlow", + "Id": 483, "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "Id": 484, - "CommandName": "Get-PnPFlow", "Rank": 3, + "CommandName": "Get-PnPFlow", + "Id": 484, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "Id": 485, - "CommandName": "Get-PnPFlowOwner", "Rank": 1, + "CommandName": "Get-PnPFlowOwner", + "Id": 485, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "Id": 486, - "CommandName": "Get-PnPFolder", "Rank": 1, + "CommandName": "Get-PnPFolder", + "Id": 486, "Command": "Get-PnPFolder" }, { - "Id": 487, - "CommandName": "Get-PnPFolder", "Rank": 2, + "CommandName": "Get-PnPFolder", + "Id": 487, "Command": "Get-PnPFolder -CurrentWebRootFolder" }, { - "Id": 488, - "CommandName": "Get-PnPFolder", "Rank": 3, + "CommandName": "Get-PnPFolder", + "Id": 488, "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "Id": 489, - "CommandName": "Get-PnPFolder", "Rank": 4, + "CommandName": "Get-PnPFolder", + "Id": 489, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "Id": 490, - "CommandName": "Get-PnPFolder", "Rank": 5, + "CommandName": "Get-PnPFolder", + "Id": 490, "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"" }, { - "Id": 491, - "CommandName": "Get-PnPFolder", "Rank": 6, + "CommandName": "Get-PnPFolder", + "Id": 491, "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "Id": 492, - "CommandName": "Get-PnPFolderInFolder", "Rank": 1, + "CommandName": "Get-PnPFolderInFolder", + "Id": 492, "Command": "Get-PnPFolderInFolder" }, { - "Id": 493, - "CommandName": "Get-PnPFolderInFolder", "Rank": 2, + "CommandName": "Get-PnPFolderInFolder", + "Id": 493, "Command": "Get-PnPFolderInFolder -Recurse" }, { - "Id": 494, - "CommandName": "Get-PnPFolderInFolder", "Rank": 3, + "CommandName": "Get-PnPFolderInFolder", + "Id": 494, "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"" }, { - "Id": 495, - "CommandName": "Get-PnPFolderInFolder", "Rank": 4, + "CommandName": "Get-PnPFolderInFolder", + "Id": 495, "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "Id": 496, - "CommandName": "Get-PnPFolderInFolder", "Rank": 5, + "CommandName": "Get-PnPFolderInFolder", + "Id": 496, "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "Id": 497, - "CommandName": "Get-PnPFolderInFolder", "Rank": 6, + "CommandName": "Get-PnPFolderInFolder", + "Id": 497, "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { - "Id": 498, - "CommandName": "Get-PnPFolderItem", "Rank": 1, + "CommandName": "Get-PnPFolderItem", + "Id": 498, "Command": "Get-PnPFolderItem" }, { - "Id": 499, - "CommandName": "Get-PnPFolderItem", "Rank": 2, + "CommandName": "Get-PnPFolderItem", + "Id": 499, "Command": "Get-PnPFolderItem -Recurse" }, { - "Id": 500, - "CommandName": "Get-PnPFolderItem", "Rank": 3, + "CommandName": "Get-PnPFolderItem", + "Id": 500, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "Id": 501, - "CommandName": "Get-PnPFolderItem", "Rank": 4, + "CommandName": "Get-PnPFolderItem", + "Id": 501, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Id": 502, - "CommandName": "Get-PnPFolderItem", "Rank": 5, + "CommandName": "Get-PnPFolderItem", + "Id": 502, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "Id": 503, - "CommandName": "Get-PnPFolderItem", "Rank": 6, + "CommandName": "Get-PnPFolderItem", + "Id": 503, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 504, - "CommandName": "Get-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Get-PnPFolderSharingLink", + "Id": 504, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 505, - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 505, "Command": "Get-PnPFolderStorageMetric" }, { - "Id": 506, - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2, + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 506, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "Id": 507, - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3, + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 507, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "Id": 508, - "CommandName": "Get-PnPFooter", "Rank": 1, + "CommandName": "Get-PnPFooter", + "Id": 508, "Command": "Get-PnPFooter" }, { - "Id": 509, - "CommandName": "Get-PnPGraphAccessToken", "Rank": 1, + "CommandName": "Get-PnPGraphAccessToken", + "Id": 509, "Command": "Get-PnPGraphAccessToken" }, { - "Id": 510, - "CommandName": "Get-PnPGraphAccessToken", "Rank": 2, + "CommandName": "Get-PnPGraphAccessToken", + "Id": 510, "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "Id": 511, - "CommandName": "Get-PnPGraphSubscription", "Rank": 1, + "CommandName": "Get-PnPGraphSubscription", + "Id": 511, "Command": "Get-PnPGraphSubscription" }, { - "Id": 512, - "CommandName": "Get-PnPGraphSubscription", "Rank": 2, + "CommandName": "Get-PnPGraphSubscription", + "Id": 512, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Id": 513, - "CommandName": "Get-PnPGroup", "Rank": 1, + "CommandName": "Get-PnPGroup", + "Id": 513, "Command": "Get-PnPGroup" }, { - "Id": 514, - "CommandName": "Get-PnPGroup", "Rank": 2, + "CommandName": "Get-PnPGroup", + "Id": 514, "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "Id": 515, - "CommandName": "Get-PnPGroup", "Rank": 3, + "CommandName": "Get-PnPGroup", + "Id": 515, "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "Id": 516, - "CommandName": "Get-PnPGroupMember", "Rank": 1, + "CommandName": "Get-PnPGroupMember", + "Id": 516, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "Id": 517, - "CommandName": "Get-PnPGroupMember", "Rank": 2, + "CommandName": "Get-PnPGroupMember", + "Id": 517, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "Id": 518, - "CommandName": "Get-PnPGroupPermissions", "Rank": 1, + "CommandName": "Get-PnPGroupPermissions", + "Id": 518, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "Id": 519, - "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Get-PnPHideDefaultThemes", + "Id": 519, "Command": "Get-PnPHideDefaultThemes" }, { - "Id": 520, - "CommandName": "Get-PnPHomePage", "Rank": 1, + "CommandName": "Get-PnPHomePage", + "Id": 520, "Command": "Get-PnPHomePage" }, { - "Id": 521, - "CommandName": "Get-PnPHomeSite", "Rank": 1, + "CommandName": "Get-PnPHomeSite", + "Id": 521, "Command": "Get-PnPHomeSite" }, { - "Id": 522, - "CommandName": "Get-PnPHomeSite", "Rank": 2, + "CommandName": "Get-PnPHomeSite", + "Id": 522, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "Id": 523, - "CommandName": "Get-PnPHomeSite", "Rank": 3, + "CommandName": "Get-PnPHomeSite", + "Id": 523, "Command": "Get-PnPHomeSite -Detailed" }, { - "Id": 524, - "CommandName": "Get-PnPHubSite", "Rank": 1, + "CommandName": "Get-PnPHubSite", + "Id": 524, "Command": "Get-PnPHubSite" }, { - "Id": 525, - "CommandName": "Get-PnPHubSite", "Rank": 2, + "CommandName": "Get-PnPHubSite", + "Id": 525, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Id": 526, - "CommandName": "Get-PnPHubSite", "Rank": 3, + "CommandName": "Get-PnPHubSite", + "Id": 526, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "Id": 527, - "CommandName": "Get-PnPHubSiteChild", "Rank": 1, + "CommandName": "Get-PnPHubSiteChild", + "Id": 527, "Command": "Get-PnPHubSiteChild" }, { - "Id": 528, - "CommandName": "Get-PnPHubSiteChild", "Rank": 2, + "CommandName": "Get-PnPHubSiteChild", + "Id": 528, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Id": 529, - "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Id": 529, "Command": "Get-PnPInPlaceRecordsManagement" }, { - "Id": 530, - "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1, + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Id": 530, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "Id": 531, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 531, "Command": "Get-PnPJavaScriptLink" }, { - "Id": 532, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 532, "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "Id": 533, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 533, "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "Id": 534, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 534, "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "Id": 535, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 535, "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "Id": 536, - "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Get-PnPKnowledgeHubSite", + "Id": 536, "Command": "Get-PnPKnowledgeHubSite" }, { - "Id": 537, - "CommandName": "Get-PnPLabel", "Rank": 1, + "CommandName": "Get-PnPLabel", + "Id": 537, "Command": "Get-PnPLabel" }, { - "Id": 538, - "CommandName": "Get-PnPLabel", "Rank": 2, + "CommandName": "Get-PnPLabel", + "Id": 538, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "Id": 539, - "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1, + "CommandName": "Get-PnPLargeListOperationStatus", + "Id": 539, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "Id": 540, - "CommandName": "Get-PnPList", "Rank": 1, + "CommandName": "Get-PnPList", + "Id": 540, "Command": "Get-PnPList" }, { - "Id": 541, - "CommandName": "Get-PnPList", "Rank": 2, + "CommandName": "Get-PnPList", + "Id": 541, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 542, - "CommandName": "Get-PnPList", "Rank": 3, + "CommandName": "Get-PnPList", + "Id": 542, "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "Id": 543, - "CommandName": "Get-PnPList", "Rank": 4, + "CommandName": "Get-PnPList", + "Id": 543, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "Id": 544, - "CommandName": "Get-PnPList", "Rank": 5, + "CommandName": "Get-PnPList", + "Id": 544, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "Id": 545, - "CommandName": "Get-PnPListDesign", "Rank": 1, + "CommandName": "Get-PnPListDesign", + "Id": 545, "Command": "Get-PnPListDesign" }, { - "Id": 546, - "CommandName": "Get-PnPListDesign", "Rank": 2, + "CommandName": "Get-PnPListDesign", + "Id": 546, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 547, - "CommandName": "Get-PnPListDesign", "Rank": 3, + "CommandName": "Get-PnPListDesign", + "Id": 547, "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "Id": 548, - "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Get-PnPListInformationRightsManagement", + "Id": 548, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "Id": 549, - "CommandName": "Get-PnPListItem", "Rank": 1, + "CommandName": "Get-PnPListItem", + "Id": 549, "Command": "Get-PnPListItem -List Tasks" }, { - "Id": 550, - "CommandName": "Get-PnPListItem", "Rank": 2, + "CommandName": "Get-PnPListItem", + "Id": 550, "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "Id": 551, - "CommandName": "Get-PnPListItem", "Rank": 3, + "CommandName": "Get-PnPListItem", + "Id": 551, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "Id": 552, - "CommandName": "Get-PnPListItem", "Rank": 4, + "CommandName": "Get-PnPListItem", + "Id": 552, "Command": "Get-PnPListItem -List Tasks -Query \"<View><Query><Where><Eq><FieldRef Name='GUID'/><Value Type='Guid'>bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3</Value></Eq></Where></Query></View>\"" }, { - "Id": 553, - "CommandName": "Get-PnPListItem", "Rank": 5, + "CommandName": "Get-PnPListItem", + "Id": 553, "Command": "Get-PnPListItem -List Tasks -Query \"<View><ViewFields><FieldRef Name='Title'/><FieldRef Name='Modified'/></ViewFields><Query><Where><Eq><FieldRef Name='Modified'/><Value Type='DateTime'><Today/></Value></Eq></Where></Query></View>\"" }, { - "Id": 554, - "CommandName": "Get-PnPListItem", "Rank": 6, + "CommandName": "Get-PnPListItem", + "Id": 554, "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "Id": 555, - "CommandName": "Get-PnPListItem", "Rank": 7, + "CommandName": "Get-PnPListItem", + "Id": 555, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "Id": 556, - "CommandName": "Get-PnPListItem", "Rank": 8, + "CommandName": "Get-PnPListItem", + "Id": 556, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "Id": 557, - "CommandName": "Get-PnPListItem", "Rank": 9, + "CommandName": "Get-PnPListItem", + "Id": 557, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "Id": 558, - "CommandName": "Get-PnPListItemAttachment", "Rank": 1, + "CommandName": "Get-PnPListItemAttachment", + "Id": 558, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "Id": 559, - "CommandName": "Get-PnPListItemAttachment", "Rank": 2, + "CommandName": "Get-PnPListItemAttachment", + "Id": 559, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "Id": 560, - "CommandName": "Get-PnPListItemComment", "Rank": 1, + "CommandName": "Get-PnPListItemComment", + "Id": 560, "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "Id": 561, - "CommandName": "Get-PnPListItemPermission", "Rank": 1, + "CommandName": "Get-PnPListItemPermission", + "Id": 561, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "Id": 562, - "CommandName": "Get-PnPListItemVersion", "Rank": 1, + "CommandName": "Get-PnPListItemVersion", + "Id": 562, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "Id": 563, - "CommandName": "Get-PnPListPermissions", "Rank": 1, + "CommandName": "Get-PnPListPermissions", + "Id": 563, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "Id": 564, - "CommandName": "Get-PnPListPermissions", "Rank": 2, + "CommandName": "Get-PnPListPermissions", + "Id": 564, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Id": 565, - "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Get-PnPListRecordDeclaration", + "Id": 565, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "Id": 566, - "CommandName": "Get-PnPMasterPage", "Rank": 1, + "CommandName": "Get-PnPMasterPage", + "Id": 566, "Command": "Get-PnPMasterPage" }, { - "Id": 567, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 567, "Command": "Get-PnPMessageCenterAnnouncement" }, { - "Id": 568, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 568, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "Id": 569, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 569, "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Id": 570, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 570, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "Id": 571, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 571, "Command": "Get-PnPMicrosoft365Group" }, { - "Id": 572, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 572, "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "Id": 573, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 573, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "Id": 574, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 574, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "Id": 575, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 575, "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "Id": 576, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 576, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "Id": 577, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 577, "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 578, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 578, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "Id": 579, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 579, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 580, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 580, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "Id": 581, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 581, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "Id": 582, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 582, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "Id": 583, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 583, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "Id": 584, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 584, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "Id": 585, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 585, "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "Id": 586, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 586, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "Id": 587, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 587, "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Id": 588, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 588, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "Id": 589, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 589, "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 590, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 590, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "Id": 591, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 591, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 592, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 592, "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 593, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 593, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "Id": 594, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 594, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 595, - "CommandName": "Get-PnPNavigationNode", "Rank": 1, + "CommandName": "Get-PnPNavigationNode", + "Id": 595, "Command": "Get-PnPNavigationNode" }, { - "Id": 596, - "CommandName": "Get-PnPNavigationNode", "Rank": 2, + "CommandName": "Get-PnPNavigationNode", + "Id": 596, "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "Id": 597, - "CommandName": "Get-PnPNavigationNode", "Rank": 3, + "CommandName": "Get-PnPNavigationNode", + "Id": 597, "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "Id": 598, - "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Get-PnPOrgAssetsLibrary", + "Id": 598, "Command": "Get-PnPOrgAssetsLibrary" }, { - "Id": 599, - "CommandName": "Get-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Get-PnPOrgNewsSite", + "Id": 599, "Command": "Get-PnPOrgNewsSite" }, { - "Id": 600, - "CommandName": "Get-PnPPage", "Rank": 1, + "CommandName": "Get-PnPPage", + "Id": 600, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "Id": 601, - "CommandName": "Get-PnPPage", "Rank": 2, + "CommandName": "Get-PnPPage", + "Id": 601, "Command": "Get-PnPPage \"MyPage\"" }, { - "Id": 602, - "CommandName": "Get-PnPPage", "Rank": 3, + "CommandName": "Get-PnPPage", + "Id": 602, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "Id": 603, - "CommandName": "Get-PnPPage", "Rank": 4, + "CommandName": "Get-PnPPage", + "Id": 603, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "Id": 604, - "CommandName": "Get-PnPPageComponent", "Rank": 1, + "CommandName": "Get-PnPPageComponent", + "Id": 604, "Command": "Get-PnPPageComponent -Page Home" }, { - "Id": 605, - "CommandName": "Get-PnPPageComponent", "Rank": 2, + "CommandName": "Get-PnPPageComponent", + "Id": 605, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 606, - "CommandName": "Get-PnPPageComponent", "Rank": 3, + "CommandName": "Get-PnPPageComponent", + "Id": 606, "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "Id": 607, - "CommandName": "Get-PnPPlannerBucket", "Rank": 1, + "CommandName": "Get-PnPPlannerBucket", + "Id": 607, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Id": 608, - "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Get-PnPPlannerConfiguration", + "Id": 608, "Command": "Get-PnPPlannerConfiguration" }, { - "Id": 609, - "CommandName": "Get-PnPPlannerPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerPlan", + "Id": 609, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "Id": 610, - "CommandName": "Get-PnPPlannerPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerPlan", + "Id": 610, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "Id": 611, - "CommandName": "Get-PnPPlannerPlan", "Rank": 3, + "CommandName": "Get-PnPPlannerPlan", + "Id": 611, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "Id": 612, - "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterMember", + "Id": 612, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Id": 613, - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 613, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "Id": 614, - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 614, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 615, - "CommandName": "Get-PnPPlannerTask", "Rank": 1, + "CommandName": "Get-PnPPlannerTask", + "Id": 615, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Id": 616, - "CommandName": "Get-PnPPlannerTask", "Rank": 2, + "CommandName": "Get-PnPPlannerTask", + "Id": 616, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Id": 617, - "CommandName": "Get-PnPPlannerTask", "Rank": 3, + "CommandName": "Get-PnPPlannerTask", + "Id": 617, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Id": 618, - "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Get-PnPPlannerUserPolicy", + "Id": 618, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 619, - "CommandName": "Get-PnPPowerPlatformConnector", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformConnector", + "Id": 619, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Id": 620, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 620, "Command": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 621, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 621, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "Id": 622, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 622, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "Id": 623, - "CommandName": "Get-PnPPowerPlatformSolution", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformSolution", + "Id": 623, "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Id": 624, - "CommandName": "Get-PnPPowerPlatformSolution", "Rank": 2, + "CommandName": "Get-PnPPowerPlatformSolution", + "Id": 624, "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'" }, { - "Id": 625, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Id": 625, "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "Id": 626, - "CommandName": "Get-PnPPropertyBag", "Rank": 1, + "CommandName": "Get-PnPPropertyBag", + "Id": 626, "Command": "Get-PnPPropertyBag" }, { - "Id": 627, - "CommandName": "Get-PnPPropertyBag", "Rank": 2, + "CommandName": "Get-PnPPropertyBag", + "Id": 627, "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "Id": 628, - "CommandName": "Get-PnPPropertyBag", "Rank": 3, + "CommandName": "Get-PnPPropertyBag", + "Id": 628, "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "Id": 629, - "CommandName": "Get-PnPPropertyBag", "Rank": 4, + "CommandName": "Get-PnPPropertyBag", + "Id": 629, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "Id": 630, - "CommandName": "Get-PnPPropertyBag", "Rank": 5, + "CommandName": "Get-PnPPropertyBag", + "Id": 630, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "Id": 631, - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 631, "Command": "Get-PnPPublishingImageRendition" }, { - "Id": 632, - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2, + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 632, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "Id": 633, - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3, + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 633, "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "Id": 634, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 634, "Command": "Get-PnPRecycleBinItem" }, { - "Id": 635, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 2, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 635, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "Id": 636, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 3, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 636, "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "Id": 637, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 4, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 637, "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "Id": 638, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 5, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 638, "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "Id": 639, - "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Get-PnPRequestAccessEmails", + "Id": 639, "Command": "Get-PnPRequestAccessEmails" }, { - "Id": 640, - "CommandName": "Get-PnPRetentionLabel", "Rank": 1, + "CommandName": "Get-PnPRetentionLabel", + "Id": 640, "Command": "Get-PnPRetentionLabel" }, { - "Id": 641, - "CommandName": "Get-PnPRetentionLabel", "Rank": 2, + "CommandName": "Get-PnPRetentionLabel", + "Id": 641, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { - "Id": 642, - "CommandName": "Get-PnPRoleDefinition", "Rank": 1, + "CommandName": "Get-PnPRoleDefinition", + "Id": 642, "Command": "Get-PnPRoleDefinition" }, { - "Id": 643, - "CommandName": "Get-PnPRoleDefinition", "Rank": 2, + "CommandName": "Get-PnPRoleDefinition", + "Id": 643, "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "Id": 644, - "CommandName": "Get-PnPRoleDefinition", "Rank": 3, + "CommandName": "Get-PnPRoleDefinition", + "Id": 644, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "Id": 645, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 645, "Command": "Get-PnPSearchConfiguration" }, { - "Id": 646, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 646, "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "Id": 647, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 647, "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "Id": 648, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 648, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 649, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 5, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 649, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "Id": 650, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 6, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 650, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "Id": 651, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 7, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 651, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "Id": 652, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 8, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 652, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "Id": 653, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 653, "Command": "Get-PnPSearchCrawlLog" }, { - "Id": 654, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 654, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "Id": 655, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 655, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "Id": 656, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 656, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "Id": 657, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 657, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "Id": 658, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 658, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "Id": 659, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 659, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "Id": 660, - "CommandName": "Get-PnPSearchSettings", "Rank": 1, + "CommandName": "Get-PnPSearchSettings", + "Id": 660, "Command": "Get-PnPSearchSettings" }, { - "Id": 661, - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 661, "Command": "Get-PnPServiceCurrentHealth" }, { - "Id": 662, - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 662, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "Id": 663, - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 663, "Command": "Get-PnPServiceHealthIssue" }, { - "Id": 664, - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 664, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "Id": 665, - "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, + "CommandName": "Get-PnPSharePointAddIn", + "Id": 665, "Command": "Get-PnPSharePointAddIn" }, { - "Id": 666, - "CommandName": "Get-PnPSharePointAddIn", "Rank": 2, + "CommandName": "Get-PnPSharePointAddIn", + "Id": 666, "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "Id": 667, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Id": 667, "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "Id": 668, - "CommandName": "Get-PnPSite", "Rank": 1, + "CommandName": "Get-PnPSite", + "Id": 668, "Command": "Get-PnPSite" }, { - "Id": 669, - "CommandName": "Get-PnPSite", "Rank": 2, + "CommandName": "Get-PnPSite", + "Id": 669, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "Id": 670, - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 1, + "CommandName": "Get-PnPSiteAnalyticsData", + "Id": 670, "Command": "Get-PnPSiteAnalyticsData -All" }, { - "Id": 671, - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 2, + "CommandName": "Get-PnPSiteAnalyticsData", + "Id": 671, "Command": "Get-PnPSiteAnalyticsData -LastSevenDays" }, { - "Id": 672, - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 3, + "CommandName": "Get-PnPSiteAnalyticsData", + "Id": 672, "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { - "Id": 673, - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 4, + "CommandName": "Get-PnPSiteAnalyticsData", + "Id": 673, "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { - "Id": 674, - "CommandName": "Get-PnPSiteClosure", "Rank": 1, + "CommandName": "Get-PnPSiteClosure", + "Id": 674, "Command": "Get-PnPSiteClosure" }, { - "Id": 675, - "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAdmin", + "Id": 675, "Command": "Get-PnPSiteCollectionAdmin" }, { - "Id": 676, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 676, "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 677, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 677, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "Id": 678, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 678, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "Id": 679, - "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionTermStore", + "Id": 679, "Command": "Get-PnPSiteCollectionTermStore" }, { - "Id": 680, - "CommandName": "Get-PnPSiteDesign", "Rank": 1, + "CommandName": "Get-PnPSiteDesign", + "Id": 680, "Command": "Get-PnPSiteDesign" }, { - "Id": 681, - "CommandName": "Get-PnPSiteDesign", "Rank": 2, + "CommandName": "Get-PnPSiteDesign", + "Id": 681, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 682, - "CommandName": "Get-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRights", + "Id": 682, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 683, - "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRun", + "Id": 683, "Command": "Get-PnPSiteDesignRun" }, { - "Id": 684, - "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, + "CommandName": "Get-PnPSiteDesignRun", + "Id": 684, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "Id": 685, - "CommandName": "Get-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Get-PnPSiteDesignTask", + "Id": 685, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Id": 686, - "CommandName": "Get-PnPSiteDesignTask", "Rank": 2, + "CommandName": "Get-PnPSiteDesignTask", + "Id": 686, "Command": "Get-PnPSiteDesignTask" }, { - "Id": 687, - "CommandName": "Get-PnPSiteDesignTask", "Rank": 3, + "CommandName": "Get-PnPSiteDesignTask", + "Id": 687, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Id": 688, - "CommandName": "Get-PnPSiteGroup", "Rank": 1, + "CommandName": "Get-PnPSiteGroup", + "Id": 688, "Command": "Get-PnPSiteGroup" }, { - "Id": 689, - "CommandName": "Get-PnPSiteGroup", "Rank": 2, + "CommandName": "Get-PnPSiteGroup", + "Id": 689, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Id": 690, - "CommandName": "Get-PnPSiteGroup", "Rank": 3, + "CommandName": "Get-PnPSiteGroup", + "Id": 690, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "Id": 691, - "CommandName": "Get-PnPSiteGroup", "Rank": 4, + "CommandName": "Get-PnPSiteGroup", + "Id": 691, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Id": 692, - "CommandName": "Get-PnPSitePolicy", "Rank": 1, + "CommandName": "Get-PnPSitePolicy", + "Id": 692, "Command": "Get-PnPSitePolicy" }, { - "Id": 693, - "CommandName": "Get-PnPSitePolicy", "Rank": 2, + "CommandName": "Get-PnPSitePolicy", + "Id": 693, "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "Id": 694, - "CommandName": "Get-PnPSitePolicy", "Rank": 3, + "CommandName": "Get-PnPSitePolicy", + "Id": 694, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Id": 695, - "CommandName": "Get-PnPSiteScript", "Rank": 1, + "CommandName": "Get-PnPSiteScript", + "Id": 695, "Command": "Get-PnPSiteScript" }, { - "Id": 696, - "CommandName": "Get-PnPSiteScript", "Rank": 2, + "CommandName": "Get-PnPSiteScript", + "Id": 696, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 697, - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 697, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "Id": 698, - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 698, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "Id": 699, - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 699, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "Id": 700, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 700, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "Id": 701, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 701, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "Id": 702, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 702, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "Id": 703, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 703, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "Id": 704, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 704, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "Id": 705, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 6, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 705, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "Id": 706, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 706, "Command": "Get-PnPSiteSearchQueryResults" }, { - "Id": 707, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 707, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "Id": 708, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 708, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "Id": 709, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 709, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "Id": 710, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 710, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "Id": 711, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 711, "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "Id": 712, - "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPSiteSensitivityLabel", + "Id": 712, "Command": "Get-PnPSiteSensitivityLabel" }, { - "Id": 713, - "CommandName": "Get-PnPSiteSetVersionPolicyProgress", "Rank": 1, + "CommandName": "Get-PnPSiteSetVersionPolicyProgress", + "Id": 713, "Command": "Get-PnPSiteSetVersionPolicyProgress" }, { - "Id": 714, - "CommandName": "Get-PnPSiteTemplate", "Rank": 1, + "CommandName": "Get-PnPSiteTemplate", + "Id": 714, "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "Id": 715, - "CommandName": "Get-PnPSiteTemplate", "Rank": 2, + "CommandName": "Get-PnPSiteTemplate", + "Id": 715, "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "Id": 716, - "CommandName": "Get-PnPSiteTemplate", "Rank": 3, + "CommandName": "Get-PnPSiteTemplate", + "Id": 716, "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "Id": 717, - "CommandName": "Get-PnPSiteTemplate", "Rank": 4, + "CommandName": "Get-PnPSiteTemplate", + "Id": 717, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "Id": 718, - "CommandName": "Get-PnPSiteTemplate", "Rank": 5, + "CommandName": "Get-PnPSiteTemplate", + "Id": 718, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "Id": 719, - "CommandName": "Get-PnPSiteTemplate", "Rank": 6, + "CommandName": "Get-PnPSiteTemplate", + "Id": 719, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "Id": 720, - "CommandName": "Get-PnPSiteTemplate", "Rank": 7, + "CommandName": "Get-PnPSiteTemplate", + "Id": 720, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "Id": 721, - "CommandName": "Get-PnPSiteTemplate", "Rank": 8, + "CommandName": "Get-PnPSiteTemplate", + "Id": 721, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "Id": 722, - "CommandName": "Get-PnPSiteTemplate", "Rank": 9, + "CommandName": "Get-PnPSiteTemplate", + "Id": 722, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "Id": 723, - "CommandName": "Get-PnPSiteTemplate", "Rank": 10, + "CommandName": "Get-PnPSiteTemplate", + "Id": 723, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "Id": 724, - "CommandName": "Get-PnPSiteTemplate", "Rank": 11, + "CommandName": "Get-PnPSiteTemplate", + "Id": 724, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "Id": 725, - "CommandName": "Get-PnPSiteTemplate", "Rank": 12, + "CommandName": "Get-PnPSiteTemplate", + "Id": 725, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "Id": 726, - "CommandName": "Get-PnPSiteTemplate", "Rank": 13, + "CommandName": "Get-PnPSiteTemplate", + "Id": 726, "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "Id": 727, - "CommandName": "Get-PnPSiteTemplate", "Rank": 14, + "CommandName": "Get-PnPSiteTemplate", + "Id": 727, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "Id": 728, - "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Get-PnPSiteUserInvitations", + "Id": 728, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Id": 729, - "CommandName": "Get-PnPSiteVersionPolicy", "Rank": 1, + "CommandName": "Get-PnPSiteVersionPolicy", + "Id": 729, "Command": "Get-PnPSiteVersionPolicy" }, { - "Id": 730, - "CommandName": "Get-PnPStorageEntity", "Rank": 1, + "CommandName": "Get-PnPStorageEntity", + "Id": 730, "Command": "Get-PnPStorageEntity" }, { - "Id": 731, - "CommandName": "Get-PnPStorageEntity", "Rank": 2, + "CommandName": "Get-PnPStorageEntity", + "Id": 731, "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "Id": 732, - "CommandName": "Get-PnPStorageEntity", "Rank": 3, + "CommandName": "Get-PnPStorageEntity", + "Id": 732, "Command": "Get-PnPStorageEntity -Scope Site" }, { - "Id": 733, - "CommandName": "Get-PnPStorageEntity", "Rank": 4, + "CommandName": "Get-PnPStorageEntity", + "Id": 733, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Id": 734, - "CommandName": "Get-PnPStoredCredential", "Rank": 1, + "CommandName": "Get-PnPStoredCredential", + "Id": 734, "Command": "Get-PnPStoredCredential -Name O365" }, { - "Id": 735, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Id": 735, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 736, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Id": 736, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 737, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Id": 737, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "Id": 738, - "CommandName": "Get-PnPSubWeb", "Rank": 1, + "CommandName": "Get-PnPSubWeb", + "Id": 738, "Command": "Get-PnPSubWeb" }, { - "Id": 739, - "CommandName": "Get-PnPSubWeb", "Rank": 2, + "CommandName": "Get-PnPSubWeb", + "Id": 739, "Command": "Get-PnPSubWeb -Recurse" }, { - "Id": 740, - "CommandName": "Get-PnPSubWeb", "Rank": 3, + "CommandName": "Get-PnPSubWeb", + "Id": 740, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "Id": 741, - "CommandName": "Get-PnPSubWeb", "Rank": 4, + "CommandName": "Get-PnPSubWeb", + "Id": 741, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "Id": 742, - "CommandName": "Get-PnPSubWeb", "Rank": 5, + "CommandName": "Get-PnPSubWeb", + "Id": 742, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "Id": 743, - "CommandName": "Get-PnPSyntexModel", "Rank": 1, + "CommandName": "Get-PnPSyntexModel", + "Id": 743, "Command": "Get-PnPSyntexModel" }, { - "Id": 744, - "CommandName": "Get-PnPSyntexModel", "Rank": 2, + "CommandName": "Get-PnPSyntexModel", + "Id": 744, "Command": "Get-PnPSyntexModel -Identity 1" }, { - "Id": 745, - "CommandName": "Get-PnPSyntexModel", "Rank": 3, + "CommandName": "Get-PnPSyntexModel", + "Id": 745, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "Id": 746, - "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, + "CommandName": "Get-PnPSyntexModelPublication", + "Id": 746, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "Id": 747, - "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Get-PnPTaxonomyItem", + "Id": 747, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "Id": 748, - "CommandName": "Get-PnPTeamsApp", "Rank": 1, + "CommandName": "Get-PnPTeamsApp", + "Id": 748, "Command": "Get-PnPTeamsApp" }, { - "Id": 749, - "CommandName": "Get-PnPTeamsApp", "Rank": 2, + "CommandName": "Get-PnPTeamsApp", + "Id": 749, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "Id": 750, - "CommandName": "Get-PnPTeamsApp", "Rank": 3, + "CommandName": "Get-PnPTeamsApp", + "Id": 750, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "Id": 751, - "CommandName": "Get-PnPTeamsChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsChannel", + "Id": 751, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "Id": 752, - "CommandName": "Get-PnPTeamsChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsChannel", + "Id": 752, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "Id": 753, - "CommandName": "Get-PnPTeamsChannel", "Rank": 3, + "CommandName": "Get-PnPTeamsChannel", + "Id": 753, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Id": 754, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 754, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "Id": 755, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 755, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Id": 756, - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 756, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "Id": 757, - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 757, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "Id": 758, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 758, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "Id": 759, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 759, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "Id": 760, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 760, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "Id": 761, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 761, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "Id": 762, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 762, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "Id": 763, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 763, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 764, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 764, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "Id": 765, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 765, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "Id": 766, - "CommandName": "Get-PnPTeamsTab", "Rank": 1, + "CommandName": "Get-PnPTeamsTab", + "Id": 766, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "Id": 767, - "CommandName": "Get-PnPTeamsTab", "Rank": 2, + "CommandName": "Get-PnPTeamsTab", + "Id": 767, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "Id": 768, - "CommandName": "Get-PnPTeamsTab", "Rank": 3, + "CommandName": "Get-PnPTeamsTab", + "Id": 768, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "Id": 769, - "CommandName": "Get-PnPTeamsTab", "Rank": 4, + "CommandName": "Get-PnPTeamsTab", + "Id": 769, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "Id": 770, - "CommandName": "Get-PnPTeamsTab", "Rank": 5, + "CommandName": "Get-PnPTeamsTab", + "Id": 770, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "Id": 771, - "CommandName": "Get-PnPTeamsTag", "Rank": 1, + "CommandName": "Get-PnPTeamsTag", + "Id": 771, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Id": 772, - "CommandName": "Get-PnPTeamsTag", "Rank": 2, + "CommandName": "Get-PnPTeamsTag", + "Id": 772, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Id": 773, - "CommandName": "Get-PnPTeamsTeam", "Rank": 1, + "CommandName": "Get-PnPTeamsTeam", + "Id": 773, "Command": "Get-PnPTeamsTeam" }, { - "Id": 774, - "CommandName": "Get-PnPTeamsTeam", "Rank": 2, + "CommandName": "Get-PnPTeamsTeam", + "Id": 774, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "Id": 775, - "CommandName": "Get-PnPTeamsTeam", "Rank": 3, + "CommandName": "Get-PnPTeamsTeam", + "Id": 775, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "Id": 776, - "CommandName": "Get-PnPTeamsTeam", "Rank": 4, + "CommandName": "Get-PnPTeamsTeam", + "Id": 776, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "Id": 777, - "CommandName": "Get-PnPTeamsTeam", "Rank": 5, + "CommandName": "Get-PnPTeamsTeam", + "Id": 777, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 778, - "CommandName": "Get-PnPTeamsUser", "Rank": 1, + "CommandName": "Get-PnPTeamsUser", + "Id": 778, "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "Id": 779, - "CommandName": "Get-PnPTeamsUser", "Rank": 2, + "CommandName": "Get-PnPTeamsUser", + "Id": 779, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "Id": 780, - "CommandName": "Get-PnPTeamsUser", "Rank": 3, + "CommandName": "Get-PnPTeamsUser", + "Id": 780, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "Id": 781, - "CommandName": "Get-PnPTeamsUser", "Rank": 4, + "CommandName": "Get-PnPTeamsUser", + "Id": 781, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "Id": 782, - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Id": 782, "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "Id": 783, - "CommandName": "Get-PnPTenant", "Rank": 1, + "CommandName": "Get-PnPTenant", + "Id": 783, "Command": "Get-PnPTenant" }, { - "Id": 784, - "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Id": 784, "Command": "Get-PnPTenantAppCatalogUrl" }, { - "Id": 785, - "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Get-PnPTenantCdnEnabled", + "Id": 785, "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "Id": 786, - "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Get-PnPTenantCdnOrigin", + "Id": 786, "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "Id": 787, - "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1, + "CommandName": "Get-PnPTenantCdnPolicies", + "Id": 787, "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "Id": 788, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 788, "Command": "Get-PnPTenantDeletedSite" }, { - "Id": 789, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 789, "Command": "Get-PnPTenantDeletedSite -Detailed" }, { - "Id": 790, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 790, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 791, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 791, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "Id": 792, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 5, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 792, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "Id": 793, - "CommandName": "Get-PnPTenantId", "Rank": 1, + "CommandName": "Get-PnPTenantId", + "Id": 793, "Command": "Get-PnPTenantId" }, { - "Id": 794, - "CommandName": "Get-PnPTenantId", "Rank": 2, + "CommandName": "Get-PnPTenantId", + "Id": 794, "Command": "Get-PnPTenantId contoso" }, { - "Id": 795, - "CommandName": "Get-PnPTenantId", "Rank": 3, + "CommandName": "Get-PnPTenantId", + "Id": 795, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "Id": 796, - "CommandName": "Get-PnPTenantId", "Rank": 4, + "CommandName": "Get-PnPTenantId", + "Id": 796, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "Id": 797, - "CommandName": "Get-PnPTenantInfo", "Rank": 1, + "CommandName": "Get-PnPTenantInfo", + "Id": 797, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "Id": 798, - "CommandName": "Get-PnPTenantInfo", "Rank": 2, + "CommandName": "Get-PnPTenantInfo", + "Id": 798, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "Id": 799, - "CommandName": "Get-PnPTenantInfo", "Rank": 3, + "CommandName": "Get-PnPTenantInfo", + "Id": 799, "Command": "Get-PnPTenantInfo" }, { - "Id": 800, - "CommandName": "Get-PnPTenantInfo", "Rank": 4, + "CommandName": "Get-PnPTenantInfo", + "Id": 800, "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "Id": 801, - "CommandName": "Get-PnPTenantInstance", "Rank": 1, + "CommandName": "Get-PnPTenantInstance", + "Id": 801, "Command": "Get-PnPTenantInstance" }, { - "Id": 802, - "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPTenantRecycleBinItem", + "Id": 802, "Command": "Get-PnPTenantRecycleBinItem" }, { - "Id": 803, - "CommandName": "Get-PnPTenantSequence", "Rank": 1, + "CommandName": "Get-PnPTenantSequence", + "Id": 803, "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "Id": 804, - "CommandName": "Get-PnPTenantSequence", "Rank": 2, + "CommandName": "Get-PnPTenantSequence", + "Id": 804, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "Id": 805, - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 805, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "Id": 806, - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2, + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 806, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "Id": 807, - "CommandName": "Get-PnPTenantSite", "Rank": 1, + "CommandName": "Get-PnPTenantSite", + "Id": 807, "Command": "Get-PnPTenantSite" }, { - "Id": 808, - "CommandName": "Get-PnPTenantSite", "Rank": 2, + "CommandName": "Get-PnPTenantSite", + "Id": 808, "Command": "Get-PnPTenantSite -Detailed" }, { - "Id": 809, - "CommandName": "Get-PnPTenantSite", "Rank": 3, + "CommandName": "Get-PnPTenantSite", + "Id": 809, "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "Id": 810, - "CommandName": "Get-PnPTenantSite", "Rank": 4, + "CommandName": "Get-PnPTenantSite", + "Id": 810, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "Id": 811, - "CommandName": "Get-PnPTenantSite", "Rank": 5, + "CommandName": "Get-PnPTenantSite", + "Id": 811, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "Id": 812, - "CommandName": "Get-PnPTenantSite", "Rank": 6, + "CommandName": "Get-PnPTenantSite", + "Id": 812, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "Id": 813, - "CommandName": "Get-PnPTenantSite", "Rank": 7, + "CommandName": "Get-PnPTenantSite", + "Id": 813, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "Id": 814, - "CommandName": "Get-PnPTenantSite", "Rank": 8, + "CommandName": "Get-PnPTenantSite", + "Id": 814, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "Id": 815, - "CommandName": "Get-PnPTenantSite", "Rank": 9, + "CommandName": "Get-PnPTenantSite", + "Id": 815, "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "Id": 816, - "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Id": 816, "Command": "Get-PnPTenantSyncClientRestriction" }, { - "Id": 817, - "CommandName": "Get-PnPTenantTemplate", "Rank": 1, + "CommandName": "Get-PnPTenantTemplate", + "Id": 817, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "Id": 818, - "CommandName": "Get-PnPTenantTemplate", "Rank": 2, + "CommandName": "Get-PnPTenantTemplate", + "Id": 818, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "Id": 819, - "CommandName": "Get-PnPTenantTemplate", "Rank": 3, + "CommandName": "Get-PnPTenantTemplate", + "Id": 819, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "Id": 820, - "CommandName": "Get-PnPTenantTheme", "Rank": 1, + "CommandName": "Get-PnPTenantTheme", + "Id": 820, "Command": "Get-PnPTenantTheme" }, { - "Id": 821, - "CommandName": "Get-PnPTenantTheme", "Rank": 2, + "CommandName": "Get-PnPTenantTheme", + "Id": 821, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Id": 822, - "CommandName": "Get-PnPTenantTheme", "Rank": 3, + "CommandName": "Get-PnPTenantTheme", + "Id": 822, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "Id": 823, - "CommandName": "Get-PnPTerm", "Rank": 1, + "CommandName": "Get-PnPTerm", + "Id": 823, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 824, - "CommandName": "Get-PnPTerm", "Rank": 2, + "CommandName": "Get-PnPTerm", + "Id": 824, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 825, - "CommandName": "Get-PnPTerm", "Rank": 3, + "CommandName": "Get-PnPTerm", + "Id": 825, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 826, - "CommandName": "Get-PnPTerm", "Rank": 4, + "CommandName": "Get-PnPTerm", + "Id": 826, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "Id": 827, - "CommandName": "Get-PnPTerm", "Rank": 5, + "CommandName": "Get-PnPTerm", + "Id": 827, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "Id": 828, - "CommandName": "Get-PnPTermGroup", "Rank": 1, + "CommandName": "Get-PnPTermGroup", + "Id": 828, "Command": "Get-PnPTermGroup" }, { - "Id": 829, - "CommandName": "Get-PnPTermGroup", "Rank": 2, + "CommandName": "Get-PnPTermGroup", + "Id": 829, "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "Id": 830, - "CommandName": "Get-PnPTermGroup", "Rank": 3, + "CommandName": "Get-PnPTermGroup", + "Id": 830, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "Id": 831, - "CommandName": "Get-PnPTermLabel", "Rank": 1, + "CommandName": "Get-PnPTermLabel", + "Id": 831, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "Id": 832, - "CommandName": "Get-PnPTermLabel", "Rank": 2, + "CommandName": "Get-PnPTermLabel", + "Id": 832, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "Id": 833, - "CommandName": "Get-PnPTermLabel", "Rank": 3, + "CommandName": "Get-PnPTermLabel", + "Id": 833, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 834, - "CommandName": "Get-PnPTermSet", "Rank": 1, + "CommandName": "Get-PnPTermSet", + "Id": 834, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "Id": 835, - "CommandName": "Get-PnPTermSet", "Rank": 2, + "CommandName": "Get-PnPTermSet", + "Id": 835, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 836, - "CommandName": "Get-PnPTermSet", "Rank": 3, + "CommandName": "Get-PnPTermSet", + "Id": 836, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "Id": 837, - "CommandName": "Get-PnPTheme", "Rank": 1, + "CommandName": "Get-PnPTheme", + "Id": 837, "Command": "Get-PnPTheme" }, { - "Id": 838, - "CommandName": "Get-PnPTheme", "Rank": 2, + "CommandName": "Get-PnPTheme", + "Id": 838, "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "Id": 839, - "CommandName": "Get-PnPTimeZoneId", "Rank": 1, + "CommandName": "Get-PnPTimeZoneId", + "Id": 839, "Command": "Get-PnPTimeZoneId" }, { - "Id": 840, - "CommandName": "Get-PnPTimeZoneId", "Rank": 2, + "CommandName": "Get-PnPTimeZoneId", + "Id": 840, "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "Id": 841, - "CommandName": "Get-PnPUnfurlLink", "Rank": 1, + "CommandName": "Get-PnPUnfurlLink", + "Id": 841, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "Id": 842, - "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1, + "CommandName": "Get-PnPUnifiedAuditLog", + "Id": 842, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "Id": 843, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 843, "Command": "Get-PnPUPABulkImportStatus" }, { - "Id": 844, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 844, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "Id": 845, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 845, "Command": "Get-PnPUPABulkImportStatus -JobId <guid>" }, { - "Id": 846, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 846, "Command": "Get-PnPUPABulkImportStatus -JobId <guid> -IncludeErrorDetails" }, { - "Id": 847, - "CommandName": "Get-PnPUser", "Rank": 1, + "CommandName": "Get-PnPUser", + "Id": 847, "Command": "Get-PnPUser" }, { - "Id": 848, - "CommandName": "Get-PnPUser", "Rank": 2, + "CommandName": "Get-PnPUser", + "Id": 848, "Command": "Get-PnPUser -Identity 23" }, { - "Id": 849, - "CommandName": "Get-PnPUser", "Rank": 3, + "CommandName": "Get-PnPUser", + "Id": 849, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "Id": 850, - "CommandName": "Get-PnPUser", "Rank": 4, + "CommandName": "Get-PnPUser", + "Id": 850, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "Id": 851, - "CommandName": "Get-PnPUser", "Rank": 5, + "CommandName": "Get-PnPUser", + "Id": 851, "Command": "Get-PnPUser -WithRightsAssigned" }, { - "Id": 852, - "CommandName": "Get-PnPUser", "Rank": 6, + "CommandName": "Get-PnPUser", + "Id": 852, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "Id": 853, - "CommandName": "Get-PnPUser", "Rank": 7, + "CommandName": "Get-PnPUser", + "Id": 853, "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "Id": 854, - "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Get-PnPUserOneDriveQuota", + "Id": 854, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "Id": 855, - "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Get-PnPUserProfileProperty", + "Id": 855, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "Id": 856, - "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Get-PnPUserProfileProperty", + "Id": 856, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "Id": 857, - "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, + "CommandName": "Get-PnPUserProfileProperty", + "Id": 857, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "Id": 858, - "CommandName": "Get-PnPView", "Rank": 1, + "CommandName": "Get-PnPView", + "Id": 858, "Command": "Get-PnPView -List \"Demo List\"" }, { - "Id": 859, - "CommandName": "Get-PnPView", "Rank": 2, + "CommandName": "Get-PnPView", + "Id": 859, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "Id": 860, - "CommandName": "Get-PnPView", "Rank": 3, + "CommandName": "Get-PnPView", + "Id": 860, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "Id": 861, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 861, "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "Id": 862, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 862, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Id": 863, - "CommandName": "Get-PnPWeb", "Rank": 1, + "CommandName": "Get-PnPWeb", + "Id": 863, "Command": "Get-PnPWeb" }, { - "Id": 864, - "CommandName": "Get-PnPWebHeader", "Rank": 1, + "CommandName": "Get-PnPWebHeader", + "Id": 864, "Command": "Get-PnPWebHeader" }, { - "Id": 865, - "CommandName": "Get-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Get-PnPWebhookSubscription", + "Id": 865, "Command": "Get-PnPWebhookSubscription -List MyList" }, { - "Id": 866, - "CommandName": "Get-PnPWebPart", "Rank": 1, + "CommandName": "Get-PnPWebPart", + "Id": 866, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "Id": 867, - "CommandName": "Get-PnPWebPart", "Rank": 2, + "CommandName": "Get-PnPWebPart", + "Id": 867, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 868, - "CommandName": "Get-PnPWebPartProperty", "Rank": 1, + "CommandName": "Get-PnPWebPartProperty", + "Id": 868, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "Id": 869, - "CommandName": "Get-PnPWebPartProperty", "Rank": 2, + "CommandName": "Get-PnPWebPartProperty", + "Id": 869, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "Id": 870, - "CommandName": "Get-PnPWebPartXml", "Rank": 1, + "CommandName": "Get-PnPWebPartXml", + "Id": 870, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 871, - "CommandName": "Get-PnPWebPermission", "Rank": 1, + "CommandName": "Get-PnPWebPermission", + "Id": 871, "Command": "Get-PnPWebPermission -Identity (Get-PnPWeb) -PrincipalId 60" }, { - "Id": 872, - "CommandName": "Get-PnPWebPermission", "Rank": 2, + "CommandName": "Get-PnPWebPermission", + "Id": 872, "Command": "Get-PnPWebPermission -Identity \"subsite\" -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Id": 873, - "CommandName": "Get-PnPWebTemplates", "Rank": 1, + "CommandName": "Get-PnPWebTemplates", + "Id": 873, "Command": "Get-PnPWebTemplates" }, { - "Id": 874, - "CommandName": "Get-PnPWebTemplates", "Rank": 2, + "CommandName": "Get-PnPWebTemplates", + "Id": 874, "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "Id": 875, - "CommandName": "Get-PnPWebTemplates", "Rank": 3, + "CommandName": "Get-PnPWebTemplates", + "Id": 875, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "Id": 876, - "CommandName": "Get-PnPWikiPageContent", "Rank": 1, + "CommandName": "Get-PnPWikiPageContent", + "Id": 876, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "Id": 877, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 877, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "Id": 878, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 878, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects" }, { - "Id": 879, - "CommandName": "Grant-PnPHubSiteRights", "Rank": 1, + "CommandName": "Grant-PnPHubSiteRights", + "Id": 879, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 880, - "CommandName": "Grant-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Grant-PnPSiteDesignRights", + "Id": 880, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 881, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Id": 881, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Id": 882, - "CommandName": "Import-PnPTaxonomy", "Rank": 1, + "CommandName": "Import-PnPTaxonomy", + "Id": 882, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "Id": 883, - "CommandName": "Import-PnPTaxonomy", "Rank": 2, + "CommandName": "Import-PnPTaxonomy", + "Id": 883, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "Id": 884, - "CommandName": "Import-PnPTaxonomy", "Rank": 3, + "CommandName": "Import-PnPTaxonomy", + "Id": 884, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "Id": 885, - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1, + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 885, "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "Id": 886, - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2, + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 886, "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "Id": 887, - "CommandName": "Import-PnPTermSet", "Rank": 1, + "CommandName": "Import-PnPTermSet", + "Id": 887, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "Id": 888, - "CommandName": "Import-PnPTermSet", "Rank": 2, + "CommandName": "Import-PnPTermSet", + "Id": 888, "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "Id": 889, - "CommandName": "Import-PnPTermSet", "Rank": 3, + "CommandName": "Import-PnPTermSet", + "Id": 889, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { - "Id": 890, - "CommandName": "Install-PnPApp", "Rank": 1, + "CommandName": "Install-PnPApp", + "Id": 890, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 891, - "CommandName": "Install-PnPApp", "Rank": 2, + "CommandName": "Install-PnPApp", + "Id": 891, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 892, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 1, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 892, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "Id": 893, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 2, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 893, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "Id": 894, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 3, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 894, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "Id": 895, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 4, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 895, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "Id": 896, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 5, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 896, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "Id": 897, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 6, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 897, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "Id": 898, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 7, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 898, "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": 899, - "CommandName": "Invoke-PnPListDesign", "Rank": 1, + "CommandName": "Invoke-PnPListDesign", + "Id": 899, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 900, - "CommandName": "Invoke-PnPListDesign", "Rank": 2, + "CommandName": "Invoke-PnPListDesign", + "Id": 900, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Id": 901, - "CommandName": "Invoke-PnPQuery", "Rank": 1, + "CommandName": "Invoke-PnPQuery", + "Id": 901, "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "Id": 902, - "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, + "CommandName": "Invoke-PnPSiteDesign", + "Id": 902, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 903, - "CommandName": "Invoke-PnPSiteDesign", "Rank": 2, + "CommandName": "Invoke-PnPSiteDesign", + "Id": 903, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Id": 904, - "CommandName": "Invoke-PnPSiteScript", "Rank": 1, + "CommandName": "Invoke-PnPSiteScript", + "Id": 904, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "Id": 905, - "CommandName": "Invoke-PnPSiteSwap", "Rank": 1, + "CommandName": "Invoke-PnPSiteSwap", + "Id": 905, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Id": 906, - "CommandName": "Invoke-PnPSiteSwap", "Rank": 2, + "CommandName": "Invoke-PnPSiteSwap", + "Id": 906, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Id": 907, - "CommandName": "Invoke-PnPSiteSwap", "Rank": 3, + "CommandName": "Invoke-PnPSiteSwap", + "Id": 907, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { - "Id": 908, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 908, "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "Id": 909, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 909, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "Id": 910, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 910, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Id": 911, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 911, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "Id": 912, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 912, "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "Id": 913, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 913, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "Id": 914, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 914, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "Id": 915, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 915, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "Id": 916, - "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1, + "CommandName": "Invoke-PnPSPRestMethod", + "Id": 916, "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "Id": 917, - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 917, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "Id": 918, - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 918, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "Id": 919, - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3, + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 919, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Id": 920, - "CommandName": "Invoke-PnPWebAction", "Rank": 1, + "CommandName": "Invoke-PnPWebAction", + "Id": 920, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "Id": 921, - "CommandName": "Invoke-PnPWebAction", "Rank": 2, + "CommandName": "Invoke-PnPWebAction", + "Id": 921, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "Id": 922, - "CommandName": "Measure-PnPList", "Rank": 1, + "CommandName": "Measure-PnPList", + "Id": 922, "Command": "Measure-PnPList \"Documents\"" }, { - "Id": 923, - "CommandName": "Measure-PnPList", "Rank": 2, + "CommandName": "Measure-PnPList", + "Id": 923, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "Id": 924, - "CommandName": "Measure-PnPWeb", "Rank": 1, + "CommandName": "Measure-PnPWeb", + "Id": 924, "Command": "Measure-PnPWeb" }, { - "Id": 925, - "CommandName": "Measure-PnPWeb", "Rank": 2, + "CommandName": "Measure-PnPWeb", + "Id": 925, "Command": "Measure-PnPWeb $web -Recursive" }, { - "Id": 926, - "CommandName": "Merge-PnPTerm", "Rank": 1, + "CommandName": "Merge-PnPTerm", + "Id": 926, "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b" }, { - "Id": 927, - "CommandName": "Move-PnPFile", "Rank": 1, + "CommandName": "Move-PnPFile", + "Id": 927, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "Id": 928, - "CommandName": "Move-PnPFile", "Rank": 2, + "CommandName": "Move-PnPFile", + "Id": 928, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "Id": 929, - "CommandName": "Move-PnPFile", "Rank": 3, + "CommandName": "Move-PnPFile", + "Id": 929, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Id": 930, - "CommandName": "Move-PnPFile", "Rank": 4, + "CommandName": "Move-PnPFile", + "Id": 930, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Id": 931, - "CommandName": "Move-PnPFolder", "Rank": 1, + "CommandName": "Move-PnPFolder", + "Id": 931, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "Id": 932, - "CommandName": "Move-PnPFolder", "Rank": 2, + "CommandName": "Move-PnPFolder", + "Id": 932, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "Id": 933, - "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1, + "CommandName": "Move-PnPListItemToRecycleBin", + "Id": 933, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "Id": 934, - "CommandName": "Move-PnPPageComponent", "Rank": 1, + "CommandName": "Move-PnPPageComponent", + "Id": 934, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "Id": 935, - "CommandName": "Move-PnPPageComponent", "Rank": 2, + "CommandName": "Move-PnPPageComponent", + "Id": 935, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "Id": 936, - "CommandName": "Move-PnPPageComponent", "Rank": 3, + "CommandName": "Move-PnPPageComponent", + "Id": 936, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "Id": 937, - "CommandName": "Move-PnPPageComponent", "Rank": 4, + "CommandName": "Move-PnPPageComponent", + "Id": 937, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "Id": 938, - "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Move-PnpRecycleBinItem", + "Id": 938, "Command": "Move-PnPRecycleBinItem" }, { - "Id": 939, - "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Move-PnpRecycleBinItem", + "Id": 939, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "Id": 940, - "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Move-PnpRecycleBinItem", + "Id": 940, "Command": "Move-PnPRecycleBinItem -Force" }, { - "Id": 941, - "CommandName": "Move-PnPTerm", "Rank": 1, + "CommandName": "Move-PnPTerm", + "Id": 941, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "Id": 942, - "CommandName": "Move-PnPTerm", "Rank": 2, + "CommandName": "Move-PnPTerm", + "Id": 942, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "Id": 943, - "CommandName": "Move-PnPTerm", "Rank": 3, + "CommandName": "Move-PnPTerm", + "Id": 943, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "Id": 944, - "CommandName": "Move-PnPTermSet", "Rank": 1, + "CommandName": "Move-PnPTermSet", + "Id": 944, "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "Id": 945, - "CommandName": "Move-PnPTermSet", "Rank": 2, + "CommandName": "Move-PnPTermSet", + "Id": 945, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "Id": 946, - "CommandName": "New-PnPAzureADGroup", "Rank": 1, + "CommandName": "New-PnPAzureADGroup", + "Id": 946, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Id": 947, - "CommandName": "New-PnPAzureADGroup", "Rank": 2, + "CommandName": "New-PnPAzureADGroup", + "Id": 947, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "Id": 948, - "CommandName": "New-PnPAzureADGroup", "Rank": 3, + "CommandName": "New-PnPAzureADGroup", + "Id": 948, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "Id": 949, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 949, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "Id": 950, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 950, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "Id": 951, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 951, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "Id": 952, - "CommandName": "New-PnPAzureCertificate", "Rank": 1, + "CommandName": "New-PnPAzureCertificate", + "Id": 952, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "Id": 953, - "CommandName": "New-PnPAzureCertificate", "Rank": 2, + "CommandName": "New-PnPAzureCertificate", + "Id": 953, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "Id": 954, - "CommandName": "New-PnPAzureCertificate", "Rank": 3, + "CommandName": "New-PnPAzureCertificate", + "Id": 954, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "Id": 955, - "CommandName": "New-PnPAzureCertificate", "Rank": 4, + "CommandName": "New-PnPAzureCertificate", + "Id": 955, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null" }, { - "Id": 956, - "CommandName": "New-PnPContainerType", "Rank": 1, + "CommandName": "New-PnPContainerType", + "Id": 956, "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"" }, { - "Id": 957, - "CommandName": "New-PnPGraphSubscription", "Rank": 1, + "CommandName": "New-PnPGraphSubscription", + "Id": 957, "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Id": 958, - "CommandName": "New-PnPGraphSubscription", "Rank": 2, + "CommandName": "New-PnPGraphSubscription", + "Id": 958, "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Id": 959, - "CommandName": "New-PnPGroup", "Rank": 1, + "CommandName": "New-PnPGroup", + "Id": 959, "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "Id": 960, - "CommandName": "New-PnPList", "Rank": 1, + "CommandName": "New-PnPList", + "Id": 960, "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "Id": 961, - "CommandName": "New-PnPList", "Rank": 2, + "CommandName": "New-PnPList", + "Id": 961, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "Id": 962, - "CommandName": "New-PnPList", "Rank": 3, + "CommandName": "New-PnPList", + "Id": 962, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "Id": 963, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 963, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Id": 964, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 964, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "Id": 965, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 965, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "Id": 966, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 966, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "Id": 967, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 967, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Id": 968, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 968, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 969, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 7, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 969, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "Id": 970, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 970, "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "Id": 971, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 971, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "Id": 972, - "CommandName": "New-PnPPersonalSite", "Rank": 1, + "CommandName": "New-PnPPersonalSite", + "Id": 972, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "Id": 973, - "CommandName": "New-PnPPlannerPlan", "Rank": 1, + "CommandName": "New-PnPPlannerPlan", + "Id": 973, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "Id": 974, - "CommandName": "New-PnPSdnProvider", "Rank": 1, + "CommandName": "New-PnPSdnProvider", + "Id": 974, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "Id": 975, - "CommandName": "New-PnPSite", "Rank": 1, + "CommandName": "New-PnPSite", + "Id": 975, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Id": 976, - "CommandName": "New-PnPSite", "Rank": 2, + "CommandName": "New-PnPSite", + "Id": 976, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "Id": 977, - "CommandName": "New-PnPSite", "Rank": 3, + "CommandName": "New-PnPSite", + "Id": 977, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Id": 978, - "CommandName": "New-PnPSite", "Rank": 4, + "CommandName": "New-PnPSite", + "Id": 978, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Id": 979, - "CommandName": "New-PnPSite", "Rank": 5, + "CommandName": "New-PnPSite", + "Id": 979, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Id": 980, - "CommandName": "New-PnPSite", "Rank": 6, + "CommandName": "New-PnPSite", + "Id": 980, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Id": 981, - "CommandName": "New-PnPSite", "Rank": 7, + "CommandName": "New-PnPSite", + "Id": 981, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "Id": 982, - "CommandName": "New-PnPSite", "Rank": 8, + "CommandName": "New-PnPSite", + "Id": 982, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "Id": 983, - "CommandName": "New-PnPSite", "Rank": 9, + "CommandName": "New-PnPSite", + "Id": 983, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "Id": 984, - "CommandName": "New-PnPSite", "Rank": 10, + "CommandName": "New-PnPSite", + "Id": 984, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "Id": 985, - "CommandName": "New-PnPSite", "Rank": 11, + "CommandName": "New-PnPSite", + "Id": 985, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Id": 986, - "CommandName": "New-PnPSite", "Rank": 12, + "CommandName": "New-PnPSite", + "Id": 986, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Id": 987, - "CommandName": "New-PnPSite", "Rank": 13, + "CommandName": "New-PnPSite", + "Id": 987, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Id": 988, - "CommandName": "New-PnPSite", "Rank": 14, + "CommandName": "New-PnPSite", + "Id": 988, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Id": 989, - "CommandName": "New-PnPSite", "Rank": 15, + "CommandName": "New-PnPSite", + "Id": 989, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Id": 990, - "CommandName": "New-PnPSite", "Rank": 16, + "CommandName": "New-PnPSite", + "Id": 990, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "Id": 991, - "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "New-PnPSiteCollectionTermStore", + "Id": 991, "Command": "New-PnPSiteCollectionTermStore" }, { - "Id": 992, - "CommandName": "New-PnPSiteGroup", "Rank": 1, + "CommandName": "New-PnPSiteGroup", + "Id": 992, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "Id": 993, - "CommandName": "New-PnPSiteGroup", "Rank": 2, + "CommandName": "New-PnPSiteGroup", + "Id": 993, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "Id": 994, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 994, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "Id": 995, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 995, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "Id": 996, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 996, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "Id": 997, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 997, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "Id": 998, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 5, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 998, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "Id": 999, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 6, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 999, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1000, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 1000, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "Id": 1001, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 1001, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "Id": 1002, - "CommandName": "New-PnPTeamsApp", "Rank": 1, + "CommandName": "New-PnPTeamsApp", + "Id": 1002, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "Id": 1003, - "CommandName": "New-PnPTeamsTeam", "Rank": 1, + "CommandName": "New-PnPTeamsTeam", + "Id": 1003, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "Id": 1004, - "CommandName": "New-PnPTeamsTeam", "Rank": 2, + "CommandName": "New-PnPTeamsTeam", + "Id": 1004, "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "Id": 1005, - "CommandName": "New-PnPTeamsTeam", "Rank": 3, + "CommandName": "New-PnPTeamsTeam", + "Id": 1005, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "Id": 1006, - "CommandName": "New-PnPTeamsTeam", "Rank": 4, + "CommandName": "New-PnPTeamsTeam", + "Id": 1006, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Id": 1007, - "CommandName": "New-PnPTeamsTeam", "Rank": 5, + "CommandName": "New-PnPTeamsTeam", + "Id": 1007, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "Id": 1008, - "CommandName": "New-PnPTeamsTeam", "Rank": 6, + "CommandName": "New-PnPTeamsTeam", + "Id": 1008, "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": 1009, - "CommandName": "New-PnPTenantSite", "Rank": 1, + "CommandName": "New-PnPTenantSite", + "Id": 1009, "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Id": 1010, - "CommandName": "New-PnPTenantSite", "Rank": 2, + "CommandName": "New-PnPTenantSite", + "Id": 1010, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Id": 1011, - "CommandName": "New-PnPTerm", "Rank": 1, + "CommandName": "New-PnPTerm", + "Id": 1011, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "Id": 1012, - "CommandName": "New-PnPTerm", "Rank": 2, + "CommandName": "New-PnPTerm", + "Id": 1012, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1013, - "CommandName": "New-PnPTermGroup", "Rank": 1, + "CommandName": "New-PnPTermGroup", + "Id": 1013, "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "Id": 1014, - "CommandName": "New-PnPTermLabel", "Rank": 1, + "CommandName": "New-PnPTermLabel", + "Id": 1014, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "Id": 1015, - "CommandName": "New-PnPTermSet", "Rank": 1, + "CommandName": "New-PnPTermSet", + "Id": 1015, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { - "Id": 1016, - "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, + "CommandName": "New-PnPUPABulkImportJob", + "Id": 1016, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { - "Id": 1017, - "CommandName": "New-PnPUPABulkImportJob", "Rank": 2, + "CommandName": "New-PnPUPABulkImportJob", + "Id": 1017, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "Id": 1018, - "CommandName": "New-PnPUser", "Rank": 1, + "CommandName": "New-PnPUser", + "Id": 1018, "Command": "New-PnPUser -LoginName user@company.com" }, { - "Id": 1019, - "CommandName": "New-PnPWeb", "Rank": 1, + "CommandName": "New-PnPWeb", + "Id": 1019, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { - "Id": 1020, - "CommandName": "Publish-PnPApp", "Rank": 1, + "CommandName": "Publish-PnPApp", + "Id": 1020, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 1021, - "CommandName": "Publish-PnPApp", "Rank": 2, + "CommandName": "Publish-PnPApp", + "Id": 1021, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "Id": 1022, - "CommandName": "Publish-PnPCompanyApp", "Rank": 1, + "CommandName": "Publish-PnPCompanyApp", + "Id": 1022, "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": 1023, - "CommandName": "Publish-PnPContentType", "Rank": 1, + "CommandName": "Publish-PnPContentType", + "Id": 1023, "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "Id": 1024, - "CommandName": "Publish-PnPSyntexModel", "Rank": 1, + "CommandName": "Publish-PnPSyntexModel", + "Id": 1024, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Id": 1025, - "CommandName": "Publish-PnPSyntexModel", "Rank": 2, + "CommandName": "Publish-PnPSyntexModel", + "Id": 1025, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Id": 1026, - "CommandName": "Read-PnPSiteTemplate", "Rank": 1, + "CommandName": "Read-PnPSiteTemplate", + "Id": 1026, "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "Id": 1027, - "CommandName": "Read-PnPSiteTemplate", "Rank": 2, + "CommandName": "Read-PnPSiteTemplate", + "Id": 1027, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "Id": 1028, - "CommandName": "Read-PnPSiteTemplate", "Rank": 3, + "CommandName": "Read-PnPSiteTemplate", + "Id": 1028, "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "Id": 1029, - "CommandName": "Read-PnPTenantTemplate", "Rank": 1, + "CommandName": "Read-PnPTenantTemplate", + "Id": 1029, "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "Id": 1030, - "CommandName": "Register-PnPAppCatalogSite", "Rank": 1, + "CommandName": "Register-PnPAppCatalogSite", + "Id": 1030, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "Id": 1031, - "CommandName": "Register-PnPAzureADApp", "Rank": 1, + "CommandName": "Register-PnPAzureADApp", + "Id": 1031, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Id": 1032, - "CommandName": "Register-PnPAzureADApp", "Rank": 2, + "CommandName": "Register-PnPAzureADApp", + "Id": 1032, "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": 1033, - "CommandName": "Register-PnPAzureADApp", "Rank": 3, + "CommandName": "Register-PnPAzureADApp", + "Id": 1033, "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": 1034, - "CommandName": "Register-PnPAzureADApp", "Rank": 4, + "CommandName": "Register-PnPAzureADApp", + "Id": 1034, "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": 1035, - "CommandName": "Register-PnPAzureADApp", "Rank": 5, + "CommandName": "Register-PnPAzureADApp", + "Id": 1035, "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Id": 1036, - "CommandName": "Register-PnPAzureADApp", "Rank": 6, + "CommandName": "Register-PnPAzureADApp", + "Id": 1036, "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Id": 1037, - "CommandName": "Register-PnPAzureADApp", "Rank": 7, + "CommandName": "Register-PnPAzureADApp", + "Id": 1037, "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": 1038, - "CommandName": "Register-PnPHubSite", "Rank": 1, + "CommandName": "Register-PnPHubSite", + "Id": 1038, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Id": 1039, - "CommandName": "Register-PnPHubSite", "Rank": 2, + "CommandName": "Register-PnPHubSite", + "Id": 1039, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "Id": 1040, - "CommandName": "Register-PnPManagementShellAccess", "Rank": 1, + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1040, "Command": "Register-PnPManagementShellAccess" }, { - "Id": 1041, - "CommandName": "Register-PnPManagementShellAccess", "Rank": 2, + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1041, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "Id": 1042, - "CommandName": "Register-PnPManagementShellAccess", "Rank": 3, + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1042, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "Id": 1043, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1043, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "Id": 1044, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1044, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "Id": 1045, - "CommandName": "Remove-PnPAlert", "Rank": 1, + "CommandName": "Remove-PnPAlert", + "Id": 1045, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "Id": 1046, - "CommandName": "Remove-PnPAlert", "Rank": 2, + "CommandName": "Remove-PnPAlert", + "Id": 1046, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 1047, - "CommandName": "Remove-PnPApp", "Rank": 1, + "CommandName": "Remove-PnPApp", + "Id": 1047, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1048, - "CommandName": "Remove-PnPApp", "Rank": 2, + "CommandName": "Remove-PnPApp", + "Id": 1048, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1049, - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1049, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1050, - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1050, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Id": 1051, - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1051, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "Id": 1052, - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1052, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Id": 1053, - "CommandName": "Remove-PnPAzureADApp", "Rank": 1, + "CommandName": "Remove-PnPAzureADApp", + "Id": 1053, "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "Id": 1054, - "CommandName": "Remove-PnPAzureADApp", "Rank": 2, + "CommandName": "Remove-PnPAzureADApp", + "Id": 1054, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 1055, - "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1055, "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "Id": 1056, - "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1056, "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "Id": 1057, - "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupMember", + "Id": 1057, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1058, - "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupOwner", + "Id": 1058, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1059, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1059, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "Id": 1060, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1060, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "Id": 1061, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1061, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 1062, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1062, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Id": 1063, - "CommandName": "Remove-PnPContainer", "Rank": 1, + "CommandName": "Remove-PnPContainer", + "Id": 1063, "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { - "Id": 1064, - "CommandName": "Remove-PnPContainer", "Rank": 2, + "CommandName": "Remove-PnPContainer", + "Id": 1064, "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" }, { - "Id": 1065, - "CommandName": "Remove-PnPContainerType", "Rank": 1, + "CommandName": "Remove-PnPContainerType", + "Id": 1065, "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6" }, { - "Id": 1066, - "CommandName": "Remove-PnPContentType", "Rank": 1, + "CommandName": "Remove-PnPContentType", + "Id": 1066, "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "Id": 1067, - "CommandName": "Remove-PnPContentType", "Rank": 2, + "CommandName": "Remove-PnPContentType", + "Id": 1067, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "Id": 1068, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1068, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Id": 1069, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1069, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Id": 1070, - "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromList", + "Id": 1070, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "Id": 1071, - "CommandName": "Remove-PnPCustomAction", "Rank": 1, + "CommandName": "Remove-PnPCustomAction", + "Id": 1071, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1072, - "CommandName": "Remove-PnPCustomAction", "Rank": 2, + "CommandName": "Remove-PnPCustomAction", + "Id": 1072, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Id": 1073, - "CommandName": "Remove-PnPCustomAction", "Rank": 3, + "CommandName": "Remove-PnPCustomAction", + "Id": 1073, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "Id": 1074, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Id": 1074, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 1075, - "CommandName": "Remove-PnPEventReceiver", "Rank": 1, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1075, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 1076, - "CommandName": "Remove-PnPEventReceiver", "Rank": 2, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1076, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 1077, - "CommandName": "Remove-PnPEventReceiver", "Rank": 3, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1077, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "Id": 1078, - "CommandName": "Remove-PnPEventReceiver", "Rank": 4, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1078, "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "Id": 1079, - "CommandName": "Remove-PnPEventReceiver", "Rank": 5, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1079, "Command": "Remove-PnPEventReceiver" }, { - "Id": 1080, - "CommandName": "Remove-PnPEventReceiver", "Rank": 6, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1080, "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "Id": 1081, - "CommandName": "Remove-PnPEventReceiver", "Rank": 7, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1081, "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "Id": 1082, - "CommandName": "Remove-PnPEventReceiver", "Rank": 8, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1082, "Command": "Remove-PnPEventReceiver -Scope All" }, { - "Id": 1083, - "CommandName": "Remove-PnPField", "Rank": 1, + "CommandName": "Remove-PnPField", + "Id": 1083, "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "Id": 1084, - "CommandName": "Remove-PnPField", "Rank": 2, + "CommandName": "Remove-PnPField", + "Id": 1084, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Id": 1085, - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1, + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1085, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Id": 1086, - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2, + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1086, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "Id": 1087, - "CommandName": "Remove-PnPFile", "Rank": 1, + "CommandName": "Remove-PnPFile", + "Id": 1087, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "Id": 1088, - "CommandName": "Remove-PnPFile", "Rank": 2, + "CommandName": "Remove-PnPFile", + "Id": 1088, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "Id": 1089, - "CommandName": "Remove-PnPFile", "Rank": 3, + "CommandName": "Remove-PnPFile", + "Id": 1089, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "Id": 1090, - "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Id": 1090, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "Id": 1091, - "CommandName": "Remove-PnPFileSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1091, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 1092, - "CommandName": "Remove-PnPFileSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1092, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "Id": 1093, - "CommandName": "Remove-PnPFileVersion", "Rank": 1, + "CommandName": "Remove-PnPFileVersion", + "Id": 1093, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Id": 1094, - "CommandName": "Remove-PnPFileVersion", "Rank": 2, + "CommandName": "Remove-PnPFileVersion", + "Id": 1094, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Id": 1095, - "CommandName": "Remove-PnPFileVersion", "Rank": 3, + "CommandName": "Remove-PnPFileVersion", + "Id": 1095, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "Id": 1096, - "CommandName": "Remove-PnPFlowOwner", "Rank": 1, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1096, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "Id": 1097, - "CommandName": "Remove-PnPFlowOwner", "Rank": 2, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1097, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "Id": 1098, - "CommandName": "Remove-PnPFlowOwner", "Rank": 3, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1098, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "Id": 1099, - "CommandName": "Remove-PnPFlowOwner", "Rank": 4, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1099, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "Id": 1100, - "CommandName": "Remove-PnPFolder", "Rank": 1, + "CommandName": "Remove-PnPFolder", + "Id": 1100, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Id": 1101, - "CommandName": "Remove-PnPFolder", "Rank": 2, + "CommandName": "Remove-PnPFolder", + "Id": 1101, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "Id": 1102, - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1102, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 1103, - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1103, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "Id": 1104, - "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, + "CommandName": "Remove-PnPGraphSubscription", + "Id": 1104, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "Id": 1105, - "CommandName": "Remove-PnPGroup", "Rank": 1, + "CommandName": "Remove-PnPGroup", + "Id": 1105, "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "Id": 1106, - "CommandName": "Remove-PnPGroupMember", "Rank": 1, + "CommandName": "Remove-PnPGroupMember", + "Id": 1106, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Id": 1107, - "CommandName": "Remove-PnPHomeSite", "Rank": 1, + "CommandName": "Remove-PnPHomeSite", + "Id": 1107, "Command": "Remove-PnPHomeSite" }, { - "Id": 1108, - "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubSiteAssociation", + "Id": 1108, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Id": 1109, - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1109, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "Id": 1110, - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2, + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1110, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "Id": 1111, - "CommandName": "Remove-PnPIndexedProperty", "Rank": 1, + "CommandName": "Remove-PnPIndexedProperty", + "Id": 1111, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "Id": 1112, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1112, "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "Id": 1113, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1113, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "Id": 1114, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1114, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "Id": 1115, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1115, "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "Id": 1116, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1116, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "Id": 1117, - "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Remove-PnPKnowledgeHubSite", + "Id": 1117, "Command": "Remove-PnPKnowledgeHubSite" }, { - "Id": 1118, - "CommandName": "Remove-PnPList", "Rank": 1, + "CommandName": "Remove-PnPList", + "Id": 1118, "Command": "Remove-PnPList -Identity Announcements" }, { - "Id": 1119, - "CommandName": "Remove-PnPList", "Rank": 2, + "CommandName": "Remove-PnPList", + "Id": 1119, "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "Id": 1120, - "CommandName": "Remove-PnPList", "Rank": 3, + "CommandName": "Remove-PnPList", + "Id": 1120, "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "Id": 1121, - "CommandName": "Remove-PnPList", "Rank": 4, + "CommandName": "Remove-PnPList", + "Id": 1121, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "Id": 1122, - "CommandName": "Remove-PnPListDesign", "Rank": 1, + "CommandName": "Remove-PnPListDesign", + "Id": 1122, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1123, - "CommandName": "Remove-PnPListItem", "Rank": 1, + "CommandName": "Remove-PnPListItem", + "Id": 1123, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "Id": 1124, - "CommandName": "Remove-PnPListItem", "Rank": 2, + "CommandName": "Remove-PnPListItem", + "Id": 1124, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "Id": 1125, - "CommandName": "Remove-PnPListItem", "Rank": 3, + "CommandName": "Remove-PnPListItem", + "Id": 1125, "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "Id": 1126, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1126, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "Id": 1127, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 2, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1127, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "Id": 1128, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 3, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1128, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "Id": 1129, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 4, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1129, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "Id": 1130, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 5, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1130, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "Id": 1131, - "CommandName": "Remove-PnPListItemVersion", "Rank": 1, + "CommandName": "Remove-PnPListItemVersion", + "Id": 1131, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Id": 1132, - "CommandName": "Remove-PnPListItemVersion", "Rank": 2, + "CommandName": "Remove-PnPListItemVersion", + "Id": 1132, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Id": 1133, - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1133, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "Id": 1134, - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1134, "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "Id": 1135, - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Id": 1135, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1136, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Id": 1136, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1137, - "CommandName": "Remove-PnPMicrosoft365GroupPhoto", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupPhoto", + "Id": 1137, "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"" }, { - "Id": 1138, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1138, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "Id": 1139, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1139, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "Id": 1140, - "CommandName": "Remove-PnPNavigationNode", "Rank": 1, + "CommandName": "Remove-PnPNavigationNode", + "Id": 1140, "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "Id": 1141, - "CommandName": "Remove-PnPNavigationNode", "Rank": 2, + "CommandName": "Remove-PnPNavigationNode", + "Id": 1141, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "Id": 1142, - "CommandName": "Remove-PnPNavigationNode", "Rank": 3, + "CommandName": "Remove-PnPNavigationNode", + "Id": 1142, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "Id": 1143, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1143, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "Id": 1144, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1144, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "Id": 1145, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1145, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "Id": 1146, - "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Remove-PnPOrgNewsSite", + "Id": 1146, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Id": 1147, - "CommandName": "Remove-PnPPage", "Rank": 1, + "CommandName": "Remove-PnPPage", + "Id": 1147, "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "Id": 1148, - "CommandName": "Remove-PnPPage", "Rank": 2, + "CommandName": "Remove-PnPPage", + "Id": 1148, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "Id": 1149, - "CommandName": "Remove-PnPPage", "Rank": 3, + "CommandName": "Remove-PnPPage", + "Id": 1149, "Command": "Remove-PnPPage $page" }, { - "Id": 1150, - "CommandName": "Remove-PnPPage", "Rank": 4, + "CommandName": "Remove-PnPPage", + "Id": 1150, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "Id": 1151, - "CommandName": "Remove-PnPPageComponent", "Rank": 1, + "CommandName": "Remove-PnPPageComponent", + "Id": 1151, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 1152, - "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, + "CommandName": "Remove-PnPPlannerBucket", + "Id": 1152, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "Id": 1153, - "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, + "CommandName": "Remove-PnPPlannerPlan", + "Id": 1153, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "Id": 1154, - "CommandName": "Remove-PnPPlannerRoster", "Rank": 1, + "CommandName": "Remove-PnPPlannerRoster", + "Id": 1154, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Id": 1155, - "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Remove-PnPPlannerRosterMember", + "Id": 1155, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 1156, - "CommandName": "Remove-PnPPlannerTask", "Rank": 1, + "CommandName": "Remove-PnPPlannerTask", + "Id": 1156, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "Id": 1157, - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1157, "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "Id": 1158, - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1158, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "Id": 1159, - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1159, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "Id": 1160, - "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Remove-PnPPublishingImageRendition", + "Id": 1160, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Id": 1161, - "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, + "CommandName": "Remove-PnPRoleDefinition", + "Id": 1161, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "Id": 1162, - "CommandName": "Remove-PnPSdnProvider", "Rank": 1, + "CommandName": "Remove-PnPSdnProvider", + "Id": 1162, "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "Id": 1163, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1163, "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "Id": 1164, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1164, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Id": 1165, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1165, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Id": 1166, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1166, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 1167, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1167, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1168, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1168, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 1169, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Id": 1169, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Id": 1170, - "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Id": 1170, "Command": "Remove-PnPSiteCollectionTermStore" }, { - "Id": 1171, - "CommandName": "Remove-PnPSiteDesign", "Rank": 1, + "CommandName": "Remove-PnPSiteDesign", + "Id": 1171, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1172, - "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Remove-PnPSiteDesignTask", + "Id": 1172, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1173, - "CommandName": "Remove-PnPSiteGroup", "Rank": 1, + "CommandName": "Remove-PnPSiteGroup", + "Id": 1173, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1174, - "CommandName": "Remove-PnPSiteGroup", "Rank": 2, + "CommandName": "Remove-PnPSiteGroup", + "Id": 1174, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "Id": 1175, - "CommandName": "Remove-PnPSiteScript", "Rank": 1, + "CommandName": "Remove-PnPSiteScript", + "Id": 1175, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1176, - "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Remove-PnPSiteUserInvitations", + "Id": 1176, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Id": 1177, - "CommandName": "Remove-PnPStorageEntity", "Rank": 1, + "CommandName": "Remove-PnPStorageEntity", + "Id": 1177, "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "Id": 1178, - "CommandName": "Remove-PnPStorageEntity", "Rank": 2, + "CommandName": "Remove-PnPStorageEntity", + "Id": 1178, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Id": 1179, - "CommandName": "Remove-PnPStoredCredential", "Rank": 1, + "CommandName": "Remove-PnPStoredCredential", + "Id": 1179, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "Id": 1180, - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1180, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "Id": 1181, - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2, + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1181, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "Id": 1182, - "CommandName": "Remove-PnPTeamsApp", "Rank": 1, + "CommandName": "Remove-PnPTeamsApp", + "Id": 1182, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "Id": 1183, - "CommandName": "Remove-PnPTeamsApp", "Rank": 2, + "CommandName": "Remove-PnPTeamsApp", + "Id": 1183, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "Id": 1184, - "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannel", + "Id": 1184, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "Id": 1185, - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1185, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "Id": 1186, - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1186, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 1187, - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1187, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "Id": 1188, - "CommandName": "Remove-PnPTeamsTab", "Rank": 1, + "CommandName": "Remove-PnPTeamsTab", + "Id": 1188, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "Id": 1189, - "CommandName": "Remove-PnPTeamsTab", "Rank": 2, + "CommandName": "Remove-PnPTeamsTab", + "Id": 1189, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "Id": 1190, - "CommandName": "Remove-PnPTeamsTab", "Rank": 3, + "CommandName": "Remove-PnPTeamsTab", + "Id": 1190, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "Id": 1191, - "CommandName": "Remove-PnPTeamsTag", "Rank": 1, + "CommandName": "Remove-PnPTeamsTag", + "Id": 1191, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Id": 1192, - "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1192, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Id": 1193, - "CommandName": "Remove-PnPTeamsTeam", "Rank": 2, + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1193, "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "Id": 1194, - "CommandName": "Remove-PnPTeamsUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsUser", + "Id": 1194, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "Id": 1195, - "CommandName": "Remove-PnPTeamsUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsUser", + "Id": 1195, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 1196, - "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Remove-PnPTenantCdnOrigin", + "Id": 1196, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Id": 1197, - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1197, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1198, - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1198, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Id": 1199, - "CommandName": "Remove-PnPTenantSite", "Rank": 1, + "CommandName": "Remove-PnPTenantSite", + "Id": 1199, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1200, - "CommandName": "Remove-PnPTenantSite", "Rank": 2, + "CommandName": "Remove-PnPTenantSite", + "Id": 1200, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "Id": 1201, - "CommandName": "Remove-PnPTenantSite", "Rank": 3, + "CommandName": "Remove-PnPTenantSite", + "Id": 1201, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "Id": 1202, - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Id": 1202, "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "Id": 1203, - "CommandName": "Remove-PnPTenantTheme", "Rank": 1, + "CommandName": "Remove-PnPTenantTheme", + "Id": 1203, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Id": 1204, - "CommandName": "Remove-PnPTerm", "Rank": 1, + "CommandName": "Remove-PnPTerm", + "Id": 1204, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Id": 1205, - "CommandName": "Remove-PnPTerm", "Rank": 2, + "CommandName": "Remove-PnPTerm", + "Id": 1205, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 1206, - "CommandName": "Remove-PnPTermGroup", "Rank": 1, + "CommandName": "Remove-PnPTermGroup", + "Id": 1206, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Id": 1207, - "CommandName": "Remove-PnPTermGroup", "Rank": 2, + "CommandName": "Remove-PnPTermGroup", + "Id": 1207, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "Id": 1208, - "CommandName": "Remove-PnPTermGroup", "Rank": 3, + "CommandName": "Remove-PnPTermGroup", + "Id": 1208, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "Id": 1209, - "CommandName": "Remove-PnPTermLabel", "Rank": 1, + "CommandName": "Remove-PnPTermLabel", + "Id": 1209, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "Id": 1210, - "CommandName": "Remove-PnPTermLabel", "Rank": 2, + "CommandName": "Remove-PnPTermLabel", + "Id": 1210, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 1211, - "CommandName": "Remove-PnPUser", "Rank": 1, + "CommandName": "Remove-PnPUser", + "Id": 1211, "Command": "Remove-PnPUser -Identity 23" }, { - "Id": 1212, - "CommandName": "Remove-PnPUser", "Rank": 2, + "CommandName": "Remove-PnPUser", + "Id": 1212, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "Id": 1213, - "CommandName": "Remove-PnPUser", "Rank": 3, + "CommandName": "Remove-PnPUser", + "Id": 1213, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "Id": 1214, - "CommandName": "Remove-PnPUserInfo", "Rank": 1, + "CommandName": "Remove-PnPUserInfo", + "Id": 1214, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Id": 1215, - "CommandName": "Remove-PnPUserProfile", "Rank": 1, + "CommandName": "Remove-PnPUserProfile", + "Id": 1215, "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "Id": 1216, - "CommandName": "Remove-PnPView", "Rank": 1, + "CommandName": "Remove-PnPView", + "Id": 1216, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "Id": 1217, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Id": 1217, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Id": 1218, - "CommandName": "Remove-PnPWeb", "Rank": 1, + "CommandName": "Remove-PnPWeb", + "Id": 1218, "Command": "Remove-PnPWeb -Identity projectA" }, { - "Id": 1219, - "CommandName": "Remove-PnPWeb", "Rank": 2, + "CommandName": "Remove-PnPWeb", + "Id": 1219, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "Id": 1220, - "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Remove-PnPWebhookSubscription", + "Id": 1220, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "Id": 1221, - "CommandName": "Remove-PnPWebPart", "Rank": 1, + "CommandName": "Remove-PnPWebPart", + "Id": 1221, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 1222, - "CommandName": "Remove-PnPWebPart", "Rank": 2, + "CommandName": "Remove-PnPWebPart", + "Id": 1222, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "Id": 1223, - "CommandName": "Remove-PnPWikiPage", "Rank": 1, + "CommandName": "Remove-PnPWikiPage", + "Id": 1223, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "Id": 1224, - "CommandName": "Rename-PnPFile", "Rank": 1, + "CommandName": "Rename-PnPFile", + "Id": 1224, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "Id": 1225, - "CommandName": "Rename-PnPFile", "Rank": 2, + "CommandName": "Rename-PnPFile", + "Id": 1225, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "Id": 1226, - "CommandName": "Rename-PnPFile", "Rank": 3, + "CommandName": "Rename-PnPFile", + "Id": 1226, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "Id": 1227, - "CommandName": "Rename-PnPFolder", "Rank": 1, + "CommandName": "Rename-PnPFolder", + "Id": 1227, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "Id": 1228, - "CommandName": "Repair-PnPSite", "Rank": 1, + "CommandName": "Repair-PnPSite", + "Id": 1228, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1229, - "CommandName": "Repair-PnPSite", "Rank": 2, + "CommandName": "Repair-PnPSite", + "Id": 1229, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Id": 1230, - "CommandName": "Request-PnPAccessToken", "Rank": 1, + "CommandName": "Request-PnPAccessToken", + "Id": 1230, "Command": "Request-PnPAccessToken" }, { - "Id": 1231, - "CommandName": "Request-PnPAccessToken", "Rank": 2, + "CommandName": "Request-PnPAccessToken", + "Id": 1231, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "Id": 1232, - "CommandName": "Request-PnPAccessToken", "Rank": 3, + "CommandName": "Request-PnPAccessToken", + "Id": 1232, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "Id": 1233, - "CommandName": "Request-PnPAccessToken", "Rank": 4, + "CommandName": "Request-PnPAccessToken", + "Id": 1233, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "Id": 1234, - "CommandName": "Request-PnPPersonalSite", "Rank": 1, + "CommandName": "Request-PnPPersonalSite", + "Id": 1234, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "Id": 1235, - "CommandName": "Request-PnPPersonalSite", "Rank": 2, + "CommandName": "Request-PnPPersonalSite", + "Id": 1235, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "Id": 1236, - "CommandName": "Request-PnPReIndexList", "Rank": 1, + "CommandName": "Request-PnPReIndexList", + "Id": 1236, "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "Id": 1237, - "CommandName": "Request-PnPReIndexWeb", "Rank": 1, + "CommandName": "Request-PnPReIndexWeb", + "Id": 1237, "Command": "Request-PnPReIndexWeb" }, { - "Id": 1238, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1238, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "Id": 1239, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1239, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "Id": 1240, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1240, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "Id": 1241, - "CommandName": "Reset-PnPFileVersion", "Rank": 1, + "CommandName": "Reset-PnPFileVersion", + "Id": 1241, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "Id": 1242, - "CommandName": "Reset-PnPFileVersion", "Rank": 2, + "CommandName": "Reset-PnPFileVersion", + "Id": 1242, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "Id": 1243, - "CommandName": "Reset-PnPLabel", "Rank": 1, + "CommandName": "Reset-PnPLabel", + "Id": 1243, "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "Id": 1244, - "CommandName": "Reset-PnPLabel", "Rank": 2, + "CommandName": "Reset-PnPLabel", + "Id": 1244, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "Id": 1245, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1245, "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Id": 1246, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Id": 1246, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "Id": 1247, - "CommandName": "Resolve-PnPFolder", "Rank": 1, + "CommandName": "Resolve-PnPFolder", + "Id": 1247, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "Id": 1248, - "CommandName": "Restore-PnPDeletedContainer", "Rank": 1, + "CommandName": "Restore-PnPDeletedContainer", + "Id": 1248, "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { - "Id": 1249, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Id": 1249, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 1250, - "CommandName": "Restore-PnPFileVersion", "Rank": 1, + "CommandName": "Restore-PnPFileVersion", + "Id": 1250, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Id": 1251, - "CommandName": "Restore-PnPFileVersion", "Rank": 2, + "CommandName": "Restore-PnPFileVersion", + "Id": 1251, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "Id": 1252, - "CommandName": "Restore-PnPFileVersion", "Rank": 3, + "CommandName": "Restore-PnPFileVersion", + "Id": 1252, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Id": 1253, - "CommandName": "Restore-PnPListItemVersion", "Rank": 1, + "CommandName": "Restore-PnPListItemVersion", + "Id": 1253, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Id": 1254, - "CommandName": "Restore-PnPListItemVersion", "Rank": 2, + "CommandName": "Restore-PnPListItemVersion", + "Id": 1254, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Id": 1255, - "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPRecycleBinItem", + "Id": 1255, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Id": 1256, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1256, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1257, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1257, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Id": 1258, - "CommandName": "Restore-PnPTenantSite", "Rank": 1, + "CommandName": "Restore-PnPTenantSite", + "Id": 1258, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1259, - "CommandName": "Restore-PnPTenantSite", "Rank": 2, + "CommandName": "Restore-PnPTenantSite", + "Id": 1259, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Id": 1260, - "CommandName": "Restore-PnPTenantSite", "Rank": 3, + "CommandName": "Restore-PnPTenantSite", + "Id": 1260, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "Id": 1261, - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Id": 1261, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "Id": 1262, - "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1, + "CommandName": "Revoke-PnPHubSiteRights", + "Id": 1262, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 1263, - "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Revoke-PnPSiteDesignRights", + "Id": 1263, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 1264, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Id": 1264, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Id": 1265, - "CommandName": "Revoke-PnPUserSession", "Rank": 1, + "CommandName": "Revoke-PnPUserSession", + "Id": 1265, "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "Id": 1266, - "CommandName": "Save-PnPPageConversionLog", "Rank": 1, + "CommandName": "Save-PnPPageConversionLog", + "Id": 1266, "Command": "Save-PnPPageConversionLog" }, { - "Id": 1267, - "CommandName": "Save-PnPSiteTemplate", "Rank": 1, + "CommandName": "Save-PnPSiteTemplate", + "Id": 1267, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "Id": 1268, - "CommandName": "Save-PnPTenantTemplate", "Rank": 1, + "CommandName": "Save-PnPTenantTemplate", + "Id": 1268, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "Id": 1269, - "CommandName": "Send-PnPMail", "Rank": 1, + "CommandName": "Send-PnPMail", + "Id": 1269, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Id": 1270, - "CommandName": "Send-PnPMail", "Rank": 2, + "CommandName": "Send-PnPMail", + "Id": 1270, "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": 1271, - "CommandName": "Send-PnPMail", "Rank": 3, + "CommandName": "Send-PnPMail", + "Id": 1271, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Id": 1272, - "CommandName": "Send-PnPMail", "Rank": 4, + "CommandName": "Send-PnPMail", + "Id": 1272, "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": 1273, - "CommandName": "Send-PnPMail", "Rank": 5, + "CommandName": "Send-PnPMail", + "Id": 1273, "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": 1274, - "CommandName": "Send-PnPMail", "Rank": 6, + "CommandName": "Send-PnPMail", + "Id": 1274, "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": 1275, - "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Id": 1275, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "Id": 1276, - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1276, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1277, - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1277, "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "Id": 1278, - "CommandName": "Set-PnPAppSideLoading", "Rank": 1, + "CommandName": "Set-PnPAppSideLoading", + "Id": 1278, "Command": "Set-PnPAppSideLoading -On" }, { - "Id": 1279, - "CommandName": "Set-PnPAppSideLoading", "Rank": 2, + "CommandName": "Set-PnPAppSideLoading", + "Id": 1279, "Command": "Set-PnPAppSideLoading -Off" }, { - "Id": 1280, - "CommandName": "Set-PnPAuditing", "Rank": 1, + "CommandName": "Set-PnPAuditing", + "Id": 1280, "Command": "Set-PnPAuditing -EnableAll" }, { - "Id": 1281, - "CommandName": "Set-PnPAuditing", "Rank": 2, + "CommandName": "Set-PnPAuditing", + "Id": 1281, "Command": "Set-PnPAuditing -DisableAll" }, { - "Id": 1282, - "CommandName": "Set-PnPAuditing", "Rank": 3, + "CommandName": "Set-PnPAuditing", + "Id": 1282, "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "Id": 1283, - "CommandName": "Set-PnPAuditing", "Rank": 4, + "CommandName": "Set-PnPAuditing", + "Id": 1283, "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "Id": 1284, - "CommandName": "Set-PnPAuditing", "Rank": 5, + "CommandName": "Set-PnPAuditing", + "Id": 1284, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "Id": 1285, - "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1, + "CommandName": "Set-PnPAvailablePageLayouts", + "Id": 1285, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "Id": 1286, - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1286, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "Id": 1287, - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1287, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "Id": 1288, - "CommandName": "Set-PnPAzureADGroup", "Rank": 1, + "CommandName": "Set-PnPAzureADGroup", + "Id": 1288, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "Id": 1289, - "CommandName": "Set-PnPAzureADGroup", "Rank": 2, + "CommandName": "Set-PnPAzureADGroup", + "Id": 1289, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Id": 1290, - "CommandName": "Set-PnPAzureADGroup", "Rank": 3, + "CommandName": "Set-PnPAzureADGroup", + "Id": 1290, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "Id": 1291, - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1291, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "Id": 1292, - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2, + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1292, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "Id": 1293, - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3, + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1293, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "Id": 1294, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1294, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "Id": 1295, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1295, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "Id": 1296, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1296, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "Id": 1297, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1297, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "Id": 1298, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1298, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "Id": 1299, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1299, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "Id": 1300, - "CommandName": "Set-PnPContentType", "Rank": 1, + "CommandName": "Set-PnPContentType", + "Id": 1300, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Id": 1301, - "CommandName": "Set-PnPContentType", "Rank": 2, + "CommandName": "Set-PnPContentType", + "Id": 1301, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "Id": 1302, - "CommandName": "Set-PnPContentType", "Rank": 3, + "CommandName": "Set-PnPContentType", + "Id": 1302, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Id": 1303, - "CommandName": "Set-PnPContentType", "Rank": 4, + "CommandName": "Set-PnPContentType", + "Id": 1303, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Id": 1304, - "CommandName": "Set-PnPContentType", "Rank": 5, + "CommandName": "Set-PnPContentType", + "Id": 1304, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Id": 1305, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1305, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "Id": 1306, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1306, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "Id": 1307, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 3, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1307, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "Id": 1308, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1308, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "Id": 1309, - "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, + "CommandName": "Set-PnPDefaultContentTypeToList", + "Id": 1309, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "Id": 1310, - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1, + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1310, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "Id": 1311, - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2, + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1311, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "Id": 1312, - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3, + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1312, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "Id": 1313, - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1313, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "Id": 1314, - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2, + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1314, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Id": 1315, - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3, + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1315, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Id": 1316, - "CommandName": "Set-PnPDocumentSetField", "Rank": 1, + "CommandName": "Set-PnPDocumentSetField", + "Id": 1316, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "Id": 1317, - "CommandName": "Set-PnPDocumentSetField", "Rank": 2, + "CommandName": "Set-PnPDocumentSetField", + "Id": 1317, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "Id": 1318, - "CommandName": "Set-PnPField", "Rank": 1, + "CommandName": "Set-PnPField", + "Id": 1318, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "Id": 1319, - "CommandName": "Set-PnPField", "Rank": 2, + "CommandName": "Set-PnPField", + "Id": 1319, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "Id": 1320, - "CommandName": "Set-PnPField", "Rank": 3, + "CommandName": "Set-PnPField", + "Id": 1320, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "Id": 1321, - "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1321, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "Id": 1322, - "CommandName": "Set-PnPFileCheckedIn", "Rank": 2, + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1322, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "Id": 1323, - "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Set-PnPFileCheckedOut", + "Id": 1323, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { - "Id": 1324, - "CommandName": "Set-PnPFolderPermission", "Rank": 1, + "CommandName": "Set-PnPFolderPermission", + "Id": 1324, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1325, - "CommandName": "Set-PnPFolderPermission", "Rank": 2, + "CommandName": "Set-PnPFolderPermission", + "Id": 1325, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1326, - "CommandName": "Set-PnPFolderPermission", "Rank": 3, + "CommandName": "Set-PnPFolderPermission", + "Id": 1326, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Id": 1327, - "CommandName": "Set-PnPFooter", "Rank": 1, + "CommandName": "Set-PnPFooter", + "Id": 1327, "Command": "Set-PnPFooter -Enabled:$true" }, { - "Id": 1328, - "CommandName": "Set-PnPFooter", "Rank": 2, + "CommandName": "Set-PnPFooter", + "Id": 1328, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "Id": 1329, - "CommandName": "Set-PnPFooter", "Rank": 3, + "CommandName": "Set-PnPFooter", + "Id": 1329, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "Id": 1330, - "CommandName": "Set-PnPFooter", "Rank": 4, + "CommandName": "Set-PnPFooter", + "Id": 1330, "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "Id": 1331, - "CommandName": "Set-PnPGraphSubscription", "Rank": 1, + "CommandName": "Set-PnPGraphSubscription", + "Id": 1331, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "Id": 1332, - "CommandName": "Set-PnPGroup", "Rank": 1, + "CommandName": "Set-PnPGroup", + "Id": 1332, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "Id": 1333, - "CommandName": "Set-PnPGroup", "Rank": 2, + "CommandName": "Set-PnPGroup", + "Id": 1333, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "Id": 1334, - "CommandName": "Set-PnPGroupPermissions", "Rank": 1, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1334, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "Id": 1335, - "CommandName": "Set-PnPGroupPermissions", "Rank": 2, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1335, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "Id": 1336, - "CommandName": "Set-PnPGroupPermissions", "Rank": 3, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1336, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "Id": 1337, - "CommandName": "Set-PnPGroupPermissions", "Rank": 4, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1337, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "Id": 1338, - "CommandName": "Set-PnPGroupPermissions", "Rank": 5, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1338, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "Id": 1339, - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1339, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "Id": 1340, - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1340, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "Id": 1341, - "CommandName": "Set-PnPHomePage", "Rank": 1, + "CommandName": "Set-PnPHomePage", + "Id": 1341, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "Id": 1342, - "CommandName": "Set-PnPHomePage", "Rank": 2, + "CommandName": "Set-PnPHomePage", + "Id": 1342, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "Id": 1343, - "CommandName": "Set-PnPHomeSite", "Rank": 1, + "CommandName": "Set-PnPHomeSite", + "Id": 1343, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "Id": 1344, - "CommandName": "Set-PnPHomeSite", "Rank": 2, + "CommandName": "Set-PnPHomeSite", + "Id": 1344, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "Id": 1345, - "CommandName": "Set-PnPHubSite", "Rank": 1, + "CommandName": "Set-PnPHubSite", + "Id": 1345, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "Id": 1346, - "CommandName": "Set-PnPHubSite", "Rank": 2, + "CommandName": "Set-PnPHubSite", + "Id": 1346, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "Id": 1347, - "CommandName": "Set-PnPHubSite", "Rank": 3, + "CommandName": "Set-PnPHubSite", + "Id": 1347, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "Id": 1348, - "CommandName": "Set-PnPHubSite", "Rank": 4, + "CommandName": "Set-PnPHubSite", + "Id": 1348, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "Id": 1349, - "CommandName": "Set-PnPHubSite", "Rank": 5, + "CommandName": "Set-PnPHubSite", + "Id": 1349, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "Id": 1350, - "CommandName": "Set-PnPHubSite", "Rank": 6, + "CommandName": "Set-PnPHubSite", + "Id": 1350, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "Id": 1351, - "CommandName": "Set-PnPImageListItemColumn", "Rank": 1, + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1351, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "Id": 1352, - "CommandName": "Set-PnPImageListItemColumn", "Rank": 2, + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1352, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "Id": 1353, - "CommandName": "Set-PnPIndexedProperties", "Rank": 1, + "CommandName": "Set-PnPIndexedProperties", + "Id": 1353, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "Id": 1354, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1354, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "Id": 1355, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2, + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1355, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "Id": 1356, - "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Set-PnPKnowledgeHubSite", + "Id": 1356, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "Id": 1357, - "CommandName": "Set-PnPLabel", "Rank": 1, + "CommandName": "Set-PnPLabel", + "Id": 1357, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "Id": 1358, - "CommandName": "Set-PnPLabel", "Rank": 2, + "CommandName": "Set-PnPLabel", + "Id": 1358, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "Id": 1359, - "CommandName": "Set-PnPList", "Rank": 1, + "CommandName": "Set-PnPList", + "Id": 1359, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "Id": 1360, - "CommandName": "Set-PnPList", "Rank": 2, + "CommandName": "Set-PnPList", + "Id": 1360, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "Id": 1361, - "CommandName": "Set-PnPList", "Rank": 3, + "CommandName": "Set-PnPList", + "Id": 1361, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "Id": 1362, - "CommandName": "Set-PnPList", "Rank": 4, + "CommandName": "Set-PnPList", + "Id": 1362, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "Id": 1363, - "CommandName": "Set-PnPList", "Rank": 5, + "CommandName": "Set-PnPList", + "Id": 1363, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "Id": 1364, - "CommandName": "Set-PnPList", "Rank": 6, + "CommandName": "Set-PnPList", + "Id": 1364, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "Id": 1365, - "CommandName": "Set-PnPList", "Rank": 7, + "CommandName": "Set-PnPList", + "Id": 1365, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "Id": 1366, - "CommandName": "Set-PnPList", "Rank": 8, + "CommandName": "Set-PnPList", + "Id": 1366, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "Id": 1367, - "CommandName": "Set-PnPList", "Rank": 9, + "CommandName": "Set-PnPList", + "Id": 1367, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "Id": 1368, - "CommandName": "Set-PnPList", "Rank": 10, + "CommandName": "Set-PnPList", + "Id": 1368, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "Id": 1369, - "CommandName": "Set-PnPList", "Rank": 11, + "CommandName": "Set-PnPList", + "Id": 1369, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "Id": 1370, - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1370, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "Id": 1371, - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 2, + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1371, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "Id": 1372, - "CommandName": "Set-PnPListItem", "Rank": 1, + "CommandName": "Set-PnPListItem", + "Id": 1372, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1373, - "CommandName": "Set-PnPListItem", "Rank": 2, + "CommandName": "Set-PnPListItem", + "Id": 1373, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1374, - "CommandName": "Set-PnPListItem", "Rank": 3, + "CommandName": "Set-PnPListItem", + "Id": 1374, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1375, - "CommandName": "Set-PnPListItem", "Rank": 4, + "CommandName": "Set-PnPListItem", + "Id": 1375, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "Id": 1376, - "CommandName": "Set-PnPListItem", "Rank": 5, + "CommandName": "Set-PnPListItem", + "Id": 1376, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "Id": 1377, - "CommandName": "Set-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1377, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Id": 1378, - "CommandName": "Set-PnPListItemAsRecord", "Rank": 2, + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1378, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "Id": 1379, - "CommandName": "Set-PnPListItemPermission", "Rank": 1, + "CommandName": "Set-PnPListItemPermission", + "Id": 1379, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1380, - "CommandName": "Set-PnPListItemPermission", "Rank": 2, + "CommandName": "Set-PnPListItemPermission", + "Id": 1380, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1381, - "CommandName": "Set-PnPListItemPermission", "Rank": 3, + "CommandName": "Set-PnPListItemPermission", + "Id": 1381, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Id": 1382, - "CommandName": "Set-PnPListItemPermission", "Rank": 4, + "CommandName": "Set-PnPListItemPermission", + "Id": 1382, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "Id": 1383, - "CommandName": "Set-PnPListItemPermission", "Rank": 5, + "CommandName": "Set-PnPListItemPermission", + "Id": 1383, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "Id": 1384, - "CommandName": "Set-PnPListPermission", "Rank": 1, + "CommandName": "Set-PnPListPermission", + "Id": 1384, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1385, - "CommandName": "Set-PnPListPermission", "Rank": 2, + "CommandName": "Set-PnPListPermission", + "Id": 1385, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1386, - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1386, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "Id": 1387, - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2, + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1387, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "Id": 1388, - "CommandName": "Set-PnPMasterPage", "Rank": 1, + "CommandName": "Set-PnPMasterPage", + "Id": 1388, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Id": 1389, - "CommandName": "Set-PnPMasterPage", "Rank": 2, + "CommandName": "Set-PnPMasterPage", + "Id": 1389, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Id": 1390, - "CommandName": "Set-PnPMasterPage", "Rank": 3, + "CommandName": "Set-PnPMasterPage", + "Id": 1390, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Id": 1391, - "CommandName": "Set-PnPMasterPage", "Rank": 4, + "CommandName": "Set-PnPMasterPage", + "Id": 1391, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Id": 1392, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1392, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "Id": 1393, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1393, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1394, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1394, "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1395, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1395, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "Id": 1396, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1396, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1397, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1397, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1398, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1398, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "Id": 1399, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1399, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1400, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1400, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1401, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1401, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "Id": 1402, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1402, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1403, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1403, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1404, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1404, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "Id": 1405, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1405, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1406, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1406, "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1407, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1407, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "Id": 1408, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1408, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1409, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1409, "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1410, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1410, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "Id": 1411, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1411, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Id": 1412, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1412, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "Id": 1413, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1413, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "Id": 1414, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1414, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "Id": 1415, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1415, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 1416, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1416, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "Id": 1417, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1417, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "Id": 1418, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 1, + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1418, "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "Id": 1419, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 2, + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1419, "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "Id": 1420, - "CommandName": "Set-PnPPage", "Rank": 1, + "CommandName": "Set-PnPPage", + "Id": 1420, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "Id": 1421, - "CommandName": "Set-PnPPage", "Rank": 2, + "CommandName": "Set-PnPPage", + "Id": 1421, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "Id": 1422, - "CommandName": "Set-PnPPage", "Rank": 3, + "CommandName": "Set-PnPPage", + "Id": 1422, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "Id": 1423, - "CommandName": "Set-PnPPage", "Rank": 4, + "CommandName": "Set-PnPPage", + "Id": 1423, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "Id": 1424, - "CommandName": "Set-PnPPage", "Rank": 5, + "CommandName": "Set-PnPPage", + "Id": 1424, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "Id": 1425, - "CommandName": "Set-PnPPage", "Rank": 6, + "CommandName": "Set-PnPPage", + "Id": 1425, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "Id": 1426, - "CommandName": "Set-PnPPage", "Rank": 7, + "CommandName": "Set-PnPPage", + "Id": 1426, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Id": 1427, - "CommandName": "Set-PnPPage", "Rank": 8, + "CommandName": "Set-PnPPage", + "Id": 1427, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "Id": 1428, - "CommandName": "Set-PnPPage", "Rank": 9, + "CommandName": "Set-PnPPage", + "Id": 1428, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Id": 1429, - "CommandName": "Set-PnPPage", "Rank": 10, + "CommandName": "Set-PnPPage", + "Id": 1429, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Id": 1430, - "CommandName": "Set-PnPPage", "Rank": 11, + "CommandName": "Set-PnPPage", + "Id": 1430, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "Id": 1431, - "CommandName": "Set-PnPPageTextPart", "Rank": 1, + "CommandName": "Set-PnPPageTextPart", + "Id": 1431, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { - "Id": 1432, - "CommandName": "Set-PnPPageWebPart", "Rank": 1, + "CommandName": "Set-PnPPageWebPart", + "Id": 1432, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { - "Id": 1433, - "CommandName": "Set-PnPPageWebPart", "Rank": 2, + "CommandName": "Set-PnPPageWebPart", + "Id": 1433, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "Id": 1434, - "CommandName": "Set-PnPPlannerBucket", "Rank": 1, + "CommandName": "Set-PnPPlannerBucket", + "Id": 1434, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "Id": 1435, - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1435, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "Id": 1436, - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1436, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "Id": 1437, - "CommandName": "Set-PnPPlannerPlan", "Rank": 1, + "CommandName": "Set-PnPPlannerPlan", + "Id": 1437, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { - "Id": 1438, - "CommandName": "Set-PnPPlannerTask", "Rank": 1, + "CommandName": "Set-PnPPlannerTask", + "Id": 1438, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "Id": 1439, - "CommandName": "Set-PnPPlannerTask", "Rank": 2, + "CommandName": "Set-PnPPlannerTask", + "Id": 1439, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "Id": 1440, - "CommandName": "Set-PnPPlannerTask", "Rank": 3, + "CommandName": "Set-PnPPlannerTask", + "Id": 1440, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Id": 1441, - "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Set-PnPPlannerUserPolicy", + "Id": 1441, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 1442, - "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1442, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "Id": 1443, - "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1443, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "Id": 1444, - "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1444, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "Id": 1445, - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1445, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "Id": 1446, - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2, + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1446, "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "Id": 1447, - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3, + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1447, "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "Id": 1448, - "CommandName": "Set-PnPRoleDefinition", "Rank": 1, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1448, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "Id": 1449, - "CommandName": "Set-PnPRoleDefinition", "Rank": 2, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1449, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "Id": 1450, - "CommandName": "Set-PnPRoleDefinition", "Rank": 3, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1450, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "Id": 1451, - "CommandName": "Set-PnPRoleDefinition", "Rank": 4, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1451, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "Id": 1452, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1452, "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "Id": 1453, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1453, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Id": 1454, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1454, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Id": 1455, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1455, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 1456, - "CommandName": "Set-PnPSearchExternalItem", "Rank": 1, + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1456, "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": 1457, - "CommandName": "Set-PnPSearchExternalItem", "Rank": 2, + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1457, "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": 1458, - "CommandName": "Set-PnPSearchSettings", "Rank": 1, + "CommandName": "Set-PnPSearchSettings", + "Id": 1458, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "Id": 1459, - "CommandName": "Set-PnPSearchSettings", "Rank": 2, + "CommandName": "Set-PnPSearchSettings", + "Id": 1459, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "Id": 1460, - "CommandName": "Set-PnPSearchSettings", "Rank": 3, + "CommandName": "Set-PnPSearchSettings", + "Id": 1460, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "Id": 1461, - "CommandName": "Set-PnPSearchSettings", "Rank": 4, + "CommandName": "Set-PnPSearchSettings", + "Id": 1461, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "Id": 1462, - "CommandName": "Set-PnPSearchSettings", "Rank": 5, + "CommandName": "Set-PnPSearchSettings", + "Id": 1462, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "Id": 1463, - "CommandName": "Set-PnPSearchSettings", "Rank": 6, + "CommandName": "Set-PnPSearchSettings", + "Id": 1463, "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "Id": 1464, - "CommandName": "Set-PnPSearchSettings", "Rank": 7, + "CommandName": "Set-PnPSearchSettings", + "Id": 1464, "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "Id": 1465, - "CommandName": "Set-PnPSite", "Rank": 1, + "CommandName": "Set-PnPSite", + "Id": 1465, "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "Id": 1466, - "CommandName": "Set-PnPSite", "Rank": 2, + "CommandName": "Set-PnPSite", + "Id": 1466, "Command": "Set-PnPSite -Classification $null" }, { - "Id": 1467, - "CommandName": "Set-PnPSite", "Rank": 3, + "CommandName": "Set-PnPSite", + "Id": 1467, "Command": "Set-PnPSite -DisableFlows" }, { - "Id": 1468, - "CommandName": "Set-PnPSite", "Rank": 4, + "CommandName": "Set-PnPSite", + "Id": 1468, "Command": "Set-PnPSite -DisableFlows:$false" }, { - "Id": 1469, - "CommandName": "Set-PnPSite", "Rank": 5, + "CommandName": "Set-PnPSite", + "Id": 1469, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "Id": 1470, - "CommandName": "Set-PnPSite", "Rank": 6, + "CommandName": "Set-PnPSite", + "Id": 1470, "Command": "Set-PnPSite -NoScriptSite $false" }, { - "Id": 1471, - "CommandName": "Set-PnPSite", "Rank": 7, + "CommandName": "Set-PnPSite", + "Id": 1471, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "Id": 1472, - "CommandName": "Set-PnPSite", "Rank": 8, + "CommandName": "Set-PnPSite", + "Id": 1472, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "Id": 1473, - "CommandName": "Set-PnPSite", "Rank": 9, + "CommandName": "Set-PnPSite", + "Id": 1473, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "Id": 1474, - "CommandName": "Set-PnPSite", "Rank": 10, + "CommandName": "Set-PnPSite", + "Id": 1474, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "Id": 1475, - "CommandName": "Set-PnPSite", "Rank": 11, + "CommandName": "Set-PnPSite", + "Id": 1475, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "Id": 1476, - "CommandName": "Set-PnPSite", "Rank": 12, + "CommandName": "Set-PnPSite", + "Id": 1476, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "Id": 1477, - "CommandName": "Set-PnPSite", "Rank": 13, + "CommandName": "Set-PnPSite", + "Id": 1477, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "Id": 1478, - "CommandName": "Set-PnPSite", "Rank": 14, + "CommandName": "Set-PnPSite", + "Id": 1478, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "Id": 1479, - "CommandName": "Set-PnPSite", "Rank": 15, + "CommandName": "Set-PnPSite", + "Id": 1479, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "Id": 1480, - "CommandName": "Set-PnPSite", "Rank": 16, + "CommandName": "Set-PnPSite", + "Id": 1480, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "Id": 1481, - "CommandName": "Set-PnPSite", "Rank": 17, + "CommandName": "Set-PnPSite", + "Id": 1481, "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "Id": 1482, - "CommandName": "Set-PnPSiteClassification", "Rank": 1, + "CommandName": "Set-PnPSiteClassification", + "Id": 1482, "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "Id": 1483, - "CommandName": "Set-PnPSiteClosure", "Rank": 1, + "CommandName": "Set-PnPSiteClosure", + "Id": 1483, "Command": "Set-PnPSiteClosure -State Open" }, { - "Id": 1484, - "CommandName": "Set-PnPSiteClosure", "Rank": 2, + "CommandName": "Set-PnPSiteClosure", + "Id": 1484, "Command": "Set-PnPSiteClosure -State Closed" }, { - "Id": 1485, - "CommandName": "Set-PnPSiteDesign", "Rank": 1, + "CommandName": "Set-PnPSiteDesign", + "Id": 1485, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "Id": 1486, - "CommandName": "Set-PnPSiteDesign", "Rank": 2, + "CommandName": "Set-PnPSiteDesign", + "Id": 1486, "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": 1487, - "CommandName": "Set-PnPSiteGroup", "Rank": 1, + "CommandName": "Set-PnPSiteGroup", + "Id": 1487, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "Id": 1488, - "CommandName": "Set-PnPSiteGroup", "Rank": 2, + "CommandName": "Set-PnPSiteGroup", + "Id": 1488, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "Id": 1489, - "CommandName": "Set-PnPSitePolicy", "Rank": 1, + "CommandName": "Set-PnPSitePolicy", + "Id": 1489, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Id": 1490, - "CommandName": "Set-PnPSiteScript", "Rank": 1, + "CommandName": "Set-PnPSiteScript", + "Id": 1490, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Id": 1491, - "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1, + "CommandName": "Set-PnPSiteScriptPackage", + "Id": 1491, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Id": 1492, - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1492, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "Id": 1493, - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1493, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "Id": 1494, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1494, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "Id": 1495, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1495, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "Id": 1496, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1496, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Id": 1497, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1497, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Id": 1498, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1498, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Id": 1499, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 6, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1499, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Id": 1500, - "CommandName": "Set-PnPStorageEntity", "Rank": 1, + "CommandName": "Set-PnPStorageEntity", + "Id": 1500, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Id": 1501, - "CommandName": "Set-PnPStorageEntity", "Rank": 2, + "CommandName": "Set-PnPStorageEntity", + "Id": 1501, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Id": 1502, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1502, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 1503, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1503, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 1504, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1504, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 1505, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1505, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 1506, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1506, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "Id": 1507, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 2, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1507, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "Id": 1508, - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1508, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "Id": 1509, - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1509, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "Id": 1510, - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1510, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "Id": 1511, - "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1, + "CommandName": "Set-PnPTeamifyPromptHidden", + "Id": 1511, "Command": "Set-PnPTeamifyPromptHidden" }, { - "Id": 1512, - "CommandName": "Set-PnPTeamsChannel", "Rank": 1, + "CommandName": "Set-PnPTeamsChannel", + "Id": 1512, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "Id": 1513, - "CommandName": "Set-PnPTeamsChannel", "Rank": 2, + "CommandName": "Set-PnPTeamsChannel", + "Id": 1513, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "Id": 1514, - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1, + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1514, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "Id": 1515, - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2, + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1515, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "Id": 1516, - "CommandName": "Set-PnPTeamsTab", "Rank": 1, + "CommandName": "Set-PnPTeamsTab", + "Id": 1516, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "Id": 1517, - "CommandName": "Set-PnPTeamsTag", "Rank": 1, + "CommandName": "Set-PnPTeamsTag", + "Id": 1517, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "Id": 1518, - "CommandName": "Set-PnPTeamsTeam", "Rank": 1, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1518, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "Id": 1519, - "CommandName": "Set-PnPTeamsTeam", "Rank": 2, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1519, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "Id": 1520, - "CommandName": "Set-PnPTeamsTeam", "Rank": 3, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1520, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "Id": 1521, - "CommandName": "Set-PnPTeamsTeam", "Rank": 4, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1521, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "Id": 1522, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1522, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "Id": 1523, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1523, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "Id": 1524, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1524, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "Id": 1525, - "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamPicture", + "Id": 1525, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "Id": 1526, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1526, "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "Id": 1527, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1527, "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "Id": 1528, - "CommandName": "Set-PnPTenant", "Rank": 1, + "CommandName": "Set-PnPTenant", + "Id": 1528, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { - "Id": 1529, - "CommandName": "Set-PnPTenant", "Rank": 2, + "CommandName": "Set-PnPTenant", + "Id": 1529, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "Id": 1530, - "CommandName": "Set-PnPTenant", "Rank": 3, + "CommandName": "Set-PnPTenant", + "Id": 1530, "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "Id": 1531, - "CommandName": "Set-PnPTenant", "Rank": 4, + "CommandName": "Set-PnPTenant", + "Id": 1531, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "Id": 1532, - "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Id": 1532, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "Id": 1533, - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1533, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "Id": 1534, - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1534, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "Id": 1535, - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3, + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1535, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "Id": 1536, - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 1, + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1536, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "Id": 1537, - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2, + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1537, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "Id": 1538, - "CommandName": "Set-PnPTenantSite", "Rank": 1, + "CommandName": "Set-PnPTenantSite", + "Id": 1538, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "Id": 1539, - "CommandName": "Set-PnPTenantSite", "Rank": 2, + "CommandName": "Set-PnPTenantSite", + "Id": 1539, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "Id": 1540, - "CommandName": "Set-PnPTenantSite", "Rank": 3, + "CommandName": "Set-PnPTenantSite", + "Id": 1540, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1541, - "CommandName": "Set-PnPTenantSite", "Rank": 4, + "CommandName": "Set-PnPTenantSite", + "Id": 1541, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 1542, - "CommandName": "Set-PnPTenantSite", "Rank": 5, + "CommandName": "Set-PnPTenantSite", + "Id": 1542, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "Id": 1543, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1543, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "Id": 1544, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1544, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "Id": 1545, - "CommandName": "Set-PnPTerm", "Rank": 1, + "CommandName": "Set-PnPTerm", + "Id": 1545, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "Id": 1546, - "CommandName": "Set-PnPTerm", "Rank": 2, + "CommandName": "Set-PnPTerm", + "Id": 1546, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1547, - "CommandName": "Set-PnPTerm", "Rank": 3, + "CommandName": "Set-PnPTerm", + "Id": 1547, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1548, - "CommandName": "Set-PnPTerm", "Rank": 4, + "CommandName": "Set-PnPTerm", + "Id": 1548, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "Id": 1549, - "CommandName": "Set-PnPTermGroup", "Rank": 1, + "CommandName": "Set-PnPTermGroup", + "Id": 1549, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "Id": 1550, - "CommandName": "Set-PnPTermSet", "Rank": 1, + "CommandName": "Set-PnPTermSet", + "Id": 1550, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "Id": 1551, - "CommandName": "Set-PnPTermSet", "Rank": 2, + "CommandName": "Set-PnPTermSet", + "Id": 1551, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "Id": 1552, - "CommandName": "Set-PnPTermSet", "Rank": 3, + "CommandName": "Set-PnPTermSet", + "Id": 1552, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "Id": 1553, - "CommandName": "Set-PnPTheme", "Rank": 1, + "CommandName": "Set-PnPTheme", + "Id": 1553, "Command": "Set-PnPTheme" }, { - "Id": 1554, - "CommandName": "Set-PnPTheme", "Rank": 2, + "CommandName": "Set-PnPTheme", + "Id": 1554, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "Id": 1555, - "CommandName": "Set-PnPTheme", "Rank": 3, + "CommandName": "Set-PnPTheme", + "Id": 1555, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "Id": 1556, - "CommandName": "Set-PnPTheme", "Rank": 4, + "CommandName": "Set-PnPTheme", + "Id": 1556, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "Id": 1557, - "CommandName": "Set-PnPTraceLog", "Rank": 1, + "CommandName": "Set-PnPTraceLog", + "Id": 1557, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "Id": 1558, - "CommandName": "Set-PnPTraceLog", "Rank": 2, + "CommandName": "Set-PnPTraceLog", + "Id": 1558, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "Id": 1559, - "CommandName": "Set-PnPTraceLog", "Rank": 3, + "CommandName": "Set-PnPTraceLog", + "Id": 1559, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "Id": 1560, - "CommandName": "Set-PnPTraceLog", "Rank": 4, + "CommandName": "Set-PnPTraceLog", + "Id": 1560, "Command": "Set-PnPTraceLog -Off" }, { - "Id": 1561, - "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Set-PnPUserOneDriveQuota", + "Id": 1561, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { - "Id": 1562, - "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1562, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "Id": 1563, - "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1563, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "Id": 1564, - "CommandName": "Set-PnPView", "Rank": 1, + "CommandName": "Set-PnPView", + "Id": 1564, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "Id": 1565, - "CommandName": "Set-PnPView", "Rank": 2, + "CommandName": "Set-PnPView", + "Id": 1565, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "Id": 1566, - "CommandName": "Set-PnPView", "Rank": 3, + "CommandName": "Set-PnPView", + "Id": 1566, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"<FieldRef Name='Title' Type='COUNT'/>\"" }, { - "Id": 1567, - "CommandName": "Set-PnPView", "Rank": 4, + "CommandName": "Set-PnPView", + "Id": 1567, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "Id": 1568, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1568, "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": 1569, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1569, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "Id": 1570, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 3, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1570, "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": 1571, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1571, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "Id": 1572, - "CommandName": "Set-PnPWeb", "Rank": 1, + "CommandName": "Set-PnPWeb", + "Id": 1572, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "Id": 1573, - "CommandName": "Set-PnPWeb", "Rank": 2, + "CommandName": "Set-PnPWeb", + "Id": 1573, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "Id": 1574, - "CommandName": "Set-PnPWeb", "Rank": 3, + "CommandName": "Set-PnPWeb", + "Id": 1574, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "Id": 1575, - "CommandName": "Set-PnPWeb", "Rank": 4, + "CommandName": "Set-PnPWeb", + "Id": 1575, "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "Id": 1576, - "CommandName": "Set-PnPWebHeader", "Rank": 1, + "CommandName": "Set-PnPWebHeader", + "Id": 1576, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "Id": 1577, - "CommandName": "Set-PnPWebHeader", "Rank": 2, + "CommandName": "Set-PnPWebHeader", + "Id": 1577, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "Id": 1578, - "CommandName": "Set-PnPWebHeader", "Rank": 3, + "CommandName": "Set-PnPWebHeader", + "Id": 1578, "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "Id": 1579, - "CommandName": "Set-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1579, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Id": 1580, - "CommandName": "Set-PnPWebhookSubscription", "Rank": 2, + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1580, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Id": 1581, - "CommandName": "Set-PnPWebPartProperty", "Rank": 1, + "CommandName": "Set-PnPWebPartProperty", + "Id": 1581, "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { - "Id": 1582, - "CommandName": "Set-PnPWebPermission", "Rank": 1, + "CommandName": "Set-PnPWebPermission", + "Id": 1582, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Id": 1583, - "CommandName": "Set-PnPWebPermission", "Rank": 2, + "CommandName": "Set-PnPWebPermission", + "Id": 1583, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "Id": 1584, - "CommandName": "Set-PnPWebPermission", "Rank": 3, + "CommandName": "Set-PnPWebPermission", + "Id": 1584, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Id": 1585, - "CommandName": "Set-PnPWebPermission", "Rank": 4, + "CommandName": "Set-PnPWebPermission", + "Id": 1585, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "Id": 1586, - "CommandName": "Set-PnPWebTheme", "Rank": 1, + "CommandName": "Set-PnPWebTheme", + "Id": 1586, "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "Id": 1587, - "CommandName": "Set-PnPWebTheme", "Rank": 2, + "CommandName": "Set-PnPWebTheme", + "Id": 1587, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "Id": 1588, - "CommandName": "Set-PnPWikiPageContent", "Rank": 1, + "CommandName": "Set-PnPWikiPageContent", + "Id": 1588, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "Id": 1589, - "CommandName": "Submit-PnPSearchQuery", "Rank": 1, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1589, "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "Id": 1590, - "CommandName": "Submit-PnPSearchQuery", "Rank": 2, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1590, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "Id": 1591, - "CommandName": "Submit-PnPSearchQuery", "Rank": 3, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1591, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "Id": 1592, - "CommandName": "Submit-PnPSearchQuery", "Rank": 4, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1592, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "Id": 1593, - "CommandName": "Submit-PnPSearchQuery", "Rank": 5, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1593, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "Id": 1594, - "CommandName": "Submit-PnPSearchQuery", "Rank": 6, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1594, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" }, { - "Id": 1595, - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1595, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "Id": 1596, - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1596, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"<strong>A bold new message</strong>\" -ContentType Html" }, { - "Id": 1597, - "CommandName": "Sync-PnPAppToTeams", "Rank": 1, + "CommandName": "Sync-PnPAppToTeams", + "Id": 1597, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1598, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1598, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "Id": 1599, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1599, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "Id": 1600, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1600, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "Id": 1601, - "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, + "CommandName": "Test-PnPListItemIsRecord", + "Id": 1601, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "Id": 1602, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Id": 1602, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "Id": 1603, - "CommandName": "Test-PnPSite", "Rank": 1, + "CommandName": "Test-PnPSite", + "Id": 1603, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1604, - "CommandName": "Test-PnPSite", "Rank": 2, + "CommandName": "Test-PnPSite", + "Id": 1604, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Id": 1605, - "CommandName": "Test-PnPTenantTemplate", "Rank": 1, + "CommandName": "Test-PnPTenantTemplate", + "Id": 1605, "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "Id": 1606, - "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Undo-PnPFileCheckedOut", + "Id": 1606, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "Id": 1607, - "CommandName": "Uninstall-PnPApp", "Rank": 1, + "CommandName": "Uninstall-PnPApp", + "Id": 1607, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1608, - "CommandName": "Uninstall-PnPApp", "Rank": 2, + "CommandName": "Uninstall-PnPApp", + "Id": 1608, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1609, - "CommandName": "Unpublish-PnPApp", "Rank": 1, + "CommandName": "Unpublish-PnPApp", + "Id": 1609, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1610, - "CommandName": "Unpublish-PnPApp", "Rank": 2, + "CommandName": "Unpublish-PnPApp", + "Id": 1610, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1611, - "CommandName": "Unpublish-PnPContentType", "Rank": 1, + "CommandName": "Unpublish-PnPContentType", + "Id": 1611, "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "Id": 1612, - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1, + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1612, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Id": 1613, - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 2, + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1613, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Id": 1614, - "CommandName": "Unregister-PnPHubSite", "Rank": 1, + "CommandName": "Unregister-PnPHubSite", + "Id": 1614, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Id": 1615, - "CommandName": "Update-PnPApp", "Rank": 1, + "CommandName": "Update-PnPApp", + "Id": 1615, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1616, - "CommandName": "Update-PnPApp", "Rank": 2, + "CommandName": "Update-PnPApp", + "Id": 1616, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1617, - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1617, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Id": 1618, - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1618, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "Id": 1619, - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3, + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1619, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Id": 1620, - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1620, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "Id": 1621, - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1621, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Id": 1622, - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1622, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "Id": 1623, - "CommandName": "Update-PnPTeamsApp", "Rank": 1, + "CommandName": "Update-PnPTeamsApp", + "Id": 1623, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" }, { - "Id": 1624, - "CommandName": "Update-PnPTeamsUser", "Rank": 1, + "CommandName": "Update-PnPTeamsUser", + "Id": 1624, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 1625, - "CommandName": "Update-PnPTeamsUser", "Rank": 2, + "CommandName": "Update-PnPTeamsUser", + "Id": 1625, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Id": 1626, - "CommandName": "Update-PnPTeamsUser", "Rank": 3, + "CommandName": "Update-PnPTeamsUser", + "Id": 1626, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { - "Id": 1627, - "CommandName": "Update-PnPUserType", "Rank": 1, + "CommandName": "Update-PnPUserType", + "Id": 1627, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } ] diff --git a/version.txt b/version.txt index cf2944ec5..d33c40019 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.37 \ No newline at end of file +2.3.38 \ No newline at end of file From e601d90276d16e4791b35b3f37a39c257ea4a25a Mon Sep 17 00:00:00 2001 From: erwinvanhunen <erwinvanhunen@users.noreply.github.com> Date: Sun, 28 Jan 2024 02:36:11 +0000 Subject: [PATCH 53/53] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index af0c8c5f7..6cf3bcb6f 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -8f8fb8423f3037ca634aa9b42a321ff4499444e6 \ No newline at end of file +d5a50e9bc7b558163cbbc64a4e9d71e34230766b \ No newline at end of file diff --git a/version.txt b/version.txt index d33c40019..fdaf6dc62 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.38 \ No newline at end of file +2.3.39 \ No newline at end of file